    @font-face {
  font-family: 'Flecha-M';
  src: url('../fonts/Flecha-M-Medium.woff') format('woff');
  font-style: normal;
}
    @font-face {
  font-family: 'GT-Walsheim-m';
  src: url('../fonts/GT-Walsheim-Pro-Medium.otf') format('opentype');
  font-style: normal;
}
    @font-face {
  font-family: 'GT-Walsheim-l';
  src: url('../fonts/GT-Walsheim-Pro-Light.otf') format('opentype');
  font-style: normal;
}
 /* PAGE BACKGROUND (exact match) */
    body {
        margin: 0;
        background: #FAF7F2; /* Warm off-white like screenshot */
        font-family: 'Flecha-M';
        color: #111;
    }

    /* HEADER */
    header {
        background: white;
        padding: 15px 0 12px;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    header h1 {
        font-size: 32px;
        margin: 0;
        letter-spacing: 0.5px;
        font-weight: 600;
    }

    header .sub {

        letter-spacing: 4px;
        font-size: 11px;
        margin-top: 6px;
        color: #222;
    }

    /* MAIN SECTION */
    .section {
        display: flex;
        align-items: center;
        justify-content: left;
        padding: 23px 6%;
        gap: 80px;
    }

    /* LEFT IMAGE */
    .left img {
        width: 400px;
        height: 510px;
        border-radius: 6px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
    }

    /* RIGHT CONTENT */
    .right {
        max-width: 600px;
    }

    .tag {
        color: #ad6434;
        font-family: 'GT-Walsheim-m';
        font-size: 14px;
        letter-spacing: 1px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .title {
        font-size: 35px;
        line-height: 1.15;
        font-weight: 500;
        margin-bottom: 18px;
       
    }

    .desc {
        margin-bottom: 35px;
        font-family: 'GT-Walsheim-l';
        font-size: 18px;
    }

    /* BUTTON */
    button {
        background: #ad6434;
        color: white;
        border: none;
        padding: 16px 36px;
        border-radius: 6px;
        font-size: 18px;
        font-family: 'GT-Walsheim-m';        
        cursor: pointer;
        transition: 0.3s;
    }

    button:hover {
        background: #a0713f;
    }

    /* FINE PRINT */
    .fine-print {
        margin-top: 30px;
        font-size: 13px;
        font-family: 'GT-Walsheim-l';
        color: #444;
        line-height: 1.45;
        max-width: 470px;
    }
    
    .support-section {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 2vh 0vw;
  font-family: 'GT-Walsheim-l';
}

.support-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
        text-align: left;
}

.support-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-list li {
  font-size: clamp(1rem, 2.5vw, 1rem);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  position: relative;
  text-align: left;
}

/* Custom bullet */
.support-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

/* Bold label inside list */
.support-list strong {
  font-weight: 600;
}


    /* RESPONSIVE */
    @media (max-width: 950px) {
        .section {
            flex-direction: column;
            text-align: center;
             gap: 0px;
        }

        .left img {
            width: 80%;
            height: 30%;
        }
    }
     /* RESPONSIVE STYLES */
    @media (max-width: 768px) {
        .section {
            flex-direction: column;
            text-align: center;
            padding: 30px 4%;
        }

        .left img {
            max-width: 320px;
            margin-bottom: 25px;
        }

        .right {
            max-width: 100%;
        }

        .title {
            font-size: 36px;
        }

        .desc {
            font-size: 16px;
        }

        button {
            padding: 14px 28px;
            font-size: 16px;
        }

        .fine-print {
            margin: 20px auto 0;
        }
    }
    
    /* Mobile optimization */
@media (max-width: 600px) {
  .support-heading {
    text-align: left;
  }
}


    @media (max-width: 480px) {
        .title {
            font-size: 28px;
        }

        .desc {
            font-size: 14px;
        }

        button {
            width: 70%;
            padding: 12px 0;
        }

        .fine-print {
            font-size: 12px;
            line-height: 1.4;
            padding: 0 10px;
        }
    }
