
:root {
  /* Fonts */
  --font-primary: 'Manrope', sans-serif;
  --font-2:'Manrope', sans-serif;
}

body {
      transition: 0.3s;
      margin: 0;
      padding: 0;
      background: #fff;
      color: #333;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    h1 {
      text-align: center;
      font-weight: 400;
      margin-bottom: 50px;
      letter-spacing: 1px;
      color: #6b2b2b;
      font-size: 20px;
    }

    .row {
      display: flex;
      align-items: stretch;
      margin-bottom: 40px;
      gap: 20px;
      
    }

.gold_scheme_sec .text-box {
      background: #f7f3eb;
      padding: 20px 25px;
      flex: 1;
      font-size: 14px;
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 2px solid #0000001A;
    }

    .row h5 {
      text-align: center;
      font-size: 16px;
      font-family: var(--font-primary);
      margin-bottom: 15px;
      font-weight: bold;
      letter-spacing: 1px;
      line-height: 21px;
      text-transform: uppercase;
    }
    .row h5::after{
    content: " ";
    display: block;
    width: 120px;
    height: 2px;
    background: #C59500;
    margin: 10px auto ;
}
    .row .text-box p {
      flex: 1;
      margin-bottom: 15px;
      text-align: justify;
      font-size: 14px;
      font-weight: 400;
      font-family: var(--font-primary);
      letter-spacing: 0.7px;


    }

    .text-box .btn {
      background: #6b2b2b;
      color: #fff;
      padding: 10px 20px;
      border: none;
      cursor: pointer;
      text-align: center;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: bold;
      letter-spacing: 1px;
      width: 100%;
      padding: 22px 0;
      border-radius: 8px;
      margin: 0 auto;
      font-family: var(--font-primary);
      font-size: 14px;
      line-height: 21px;
      letter-spacing: 0.5px;

    }

    .row .image-box {
      flex: 1;
    }

    .text-box .row img {
      width: 100%;
      height: 100%;
      max-height: 390px;
      object-fit: cover;
      display: block;
    }

    /* Alternate background for Scheme 02 */
    .scheme2 {
      background: #fdfaf1 !important;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .row {
        flex-direction: column;
      }
      .row .image-box img {
        display: none;
      }
    }