

      
        /* Main Content */
        .main-content {
            margin-top: 5rem;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 78px;
        }

        .hero-section {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .hero-title {
            font-size: 32px;
            font-weight: 600;
            line-height: 1.3;
            color: #113554;
        }

        .hero-subtitle {
            font-size: 16px;
            font-weight: 400;
            line-height: 1.4;
            color: #325573;
            width: 100%;
        }

        /* Form Sections */
        .form-section {
            display: flex;
            flex-direction: column;
            gap: 48px;
        }

        .form-row {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .form-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .section-title {
            font-size: 28px;
            font-weight: 600;
            line-height: 1.3;
            color: #113554;
            margin-bottom: 20px;
        }

        .form-input, .form-select, .form-textarea {
            padding: 12px;
            border: 1px solid orangered;
            border-radius: 4px;
            background-color: #efefef;
            font-size: 16px;
            font-family: 'Geist', sans-serif;
            font-weight: 400;
            color: #8a8a8a;
            width: 100%;
            transition: all 0.3s ease;
        }
         input[type="ratio"], input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            border: 1px solid orangered;
            background: orangered;
            transition: all 0.3s ease;

         }
        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border: 1px dashed orangered;
            /* background-color: #e0e0e0; */
            color: #113554;
        }

        .form-textarea {
            min-height: 100px;
            resize: vertical;
        }

        .dropdown-wrapper {
            position: relative;
        }
        /* 1. BASIC RESET (already in your page) */




/* custom arrow (optional) */
.dropdown-wrapper::after { /* same as previous answer */ }

/* 2. NEW BASE-SELECT STYLING (Chrome 119+, Safari 17+, Edge 119+) */
@supports (appearance: base-select) {
  /* opt-in */
  .form-select {
    appearance: base-select;
  }

  /* the popover that contains the options */
  .form-select::picker(select) {
    appearance: base-select;
    margin-top: 4px;
    border: none;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    overflow: hidden;
    /* scrollbar cosmetics */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-thumb { background: orangered; border-radius: 6px; }
  }

  /* each option row */
  .form-select option {
    padding: 12px 16px;
    font-size: 1rem;
    transition: background .2s;
  }

  /* hover / highlight */
  .form-select option:hover,
  .form-select option:focus,
  .form-select option:checked {
    background: #fff0eb;
    color: orangered;
  }

  /* selected checkmark (optional) */
  .form-select option:checked::before {
    content: "✓";
    float: right;
    font-weight: bold;
    color: orangered;
  }
}

/* 3. OLD BROWSERS – we CAN’T style the list, but we can
   at least make the control itself prettier (already done above) */

        .dropdown-arrow {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 22px;
            pointer-events: none;
        }

        .country-select {
            padding-left: 50px;
        }

        .country-flag {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 26px;
            height: 22px;
        }

        /* Radio Group */
        .radio-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .radio-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            color: #113554;
        }

        .radio-item input[type="radio"] {
            width: 20px;
            height: 20px;
        }

        /* Shipping Section */
        .shipping-section {
            display: flex;
            flex-direction: column;
            gap: 68px;
        }

        .shipping-content {
            display: flex;
            flex-direction: column;
            gap: 26px;
        }

        .shipping-image {
            width: 100%;
            height: auto;
            border-radius: 30px;
            margin-top: 40px;
        }

        /* Payment Section */
        .payment-section {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .payment-content {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        /* Confirmation Section */
        .confirmation-section {
            display: flex;
            flex-direction: column;
            gap: 120px;
        }

        .confirmation-content {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .order-btn {
            background-color: #e44a1b;
            color: #fdfeff;
            padding: 16px 28px;
            border: none;
            border-radius: 28px;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            width: fit-content;
        }

        .order-btn:hover {
            background-color: #c73e17;
            transform: translateY(-2px);
        }

        .checkbox-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 48px;
        }

        .checkbox-wrapper input[type="checkbox"] {
            width: 20px;
            height: 20px;
        }

        .confirmation-text {
            font-size: 16px;
            color: #8a8a8a;
        }

        .thank-you-text {
            font-size: 18px;
            font-weight: 400;
            line-height: 1.3;
            color: #325573;
            margin-top: 30px;
        }

        /* Assistance Section */
        .assistance-section {
            background: linear-gradient(rgba(50, 85, 115, 0.9), rgba(50, 85, 115, 0.9)), url('../assets/images/img_close_36px_779x1459.png');
            background-size: cover;
            background-position: center;
            border-radius: 30px;
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 58px;
            color: #fdfeff;
            text-align: center;
        }

        .assistance-title {
            font-size: 32px;
            font-weight: 600;
            line-height: 1.3;
        }

        .assistance-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
            width: 100%;
            max-width: 400px;
        }

        .whatsapp-btn {
            background-color: #e44a1b;
            color: #fdfeff;
            padding: 18px 24px 18px 56px;
            border: none;
            border-radius: 32px;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .support-btn {
            background: transparent;
            color: #fdfeff;
            padding: 18px 24px 18px 56px;
            border: 1px solid #fdfeff;
            border-radius: 32px;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover, .support-btn:hover {
            transform: translateY(-2px);
        }

        

        /* Responsive Design */
        @media (min-width: 640px) {
            .main-content {
                padding: 24px;
            }

            .hero-title {
                font-size: 48px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .section-title {
                font-size: 36px;
            }

            .assistance-buttons {
                flex-direction: row;
                justify-content: center;
            }
        }

        @media (min-width: 768px) {
            /* .header {
                padding: 12px 104px;
            } */

            .nav-menu {
                display: flex;
            }

            .logo {
                width: 148px;
            }

            .hero-title {
                font-size: 64px;
            }

            .hero-subtitle {
                font-size: 20px;
                width: 70%;
            }

            .section-title {
                font-size: 42px;
            }

            .form-row {
                flex-direction: row;
                align-items: flex-start;
            }

            .form-column:first-child {
                width: 36%;
            }

            .form-column:last-child {
                width: 56%;
            }

            .shipping-section {
                flex-direction: row;
                align-items: flex-start;
            }

            .shipping-content {
                width: 34%;
            }

            .shipping-image-wrapper {
                width: 66%;
                padding-left: 82px;
            }

            .assistance-title {
                font-size: 42px;
            }

            .footer-content {
                padding: 0 56px;
            }

            .footer-hero {
                font-size: 42px;
            }

            .footer-links {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }

            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }

            .thank-you-text {
                font-size: 24px;
            }
        }

        @media (min-width: 1024px) {
            .hero-title {
                font-size: 90px;
            }

            .hero-subtitle {
                font-size: 24px;
            }

            .section-title {
                font-size: 50px;
            }

            .assistance-title {
                font-size: 50px;
            }

            .footer-hero {
                font-size: 50px;
            }
            .hamburger{
                display: none;
            }
        }

        @media (min-width: 1280px) {
            .main-content {
                padding: 26px;
            }
        }
  