:root {
    --primary: #da924e;
    --primary-dark: #b87333;
    --secondary: #0f172a;
    /* Darker secondary */
    --text-main: #1e293b;
    /* Darker main text */
    --text-light: #475569;
    /* Darker light text (more readable) */
    --bg-light: #f8fafc;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --font-heading: 'Outfit', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Brand Colors */
    --brand-bkash: #e2136e;
    --brand-nagad: #ec1c24;
    /* Actually Nagad is reddish-orange */
    --brand-rocket: #8c3494;
    --brand-upay: #0081c7;
    --brand-visa: #1a1f71;
    --brand-mastercard: #eb001b;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 500;
    /* Bolder base font */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
    /* Bolder headings */
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(218, 146, 78, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(218, 146, 78, 0.3);
}

/* Header */
header {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 3rem 0 6rem;
    /* Reduced top padding from 6rem to 3rem */
    background: linear-gradient(135deg, #fffbf7 0%, #fff 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(218, 146, 78, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(218, 146, 78, 0.1);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(218, 146, 78, 0.2);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 72px;
}

/* Search Box (Premium) */
.search-wrapper {
    background: rgba(255, 255, 255, 0.9);
    /* Increased opacity */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 8px 24px -4px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    max-width: 1000px;
    margin: -3rem auto 0;
    /* Negative margin to pull it UP overlapping hero content slightly or simply close the gap */
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 1);
    animation: fadeInUp 0.8s ease-out forwards;
    /* Entrance animation */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: end;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    display: block;
}

.form-group {
    display: flex;
    flex-direction: column;
    /* gap removed from here as label has margin-bottom now */
    position: relative;
}

.form-control {
    width: 100%;
    height: 56px;
    padding: 0 1rem 0 3rem;
    /* Left padding for icons */
    border: 2px solid transparent;
    border-radius: 0.8rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
    background: #f1f5f9;
    color: var(--secondary);
    font-family: var(--font-body);
}

.form-control:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(218, 146, 78, 0.15);
    outline: none;
}

.icon-inside {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    z-index: 1;
    pointer-events: none;
    right: auto;
    /* Overriding previous right positioning */
}

.search-submit-btn {
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(218, 146, 78, 0.25);
    width: 100%;
}

.search-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(218, 146, 78, 0.35);
}

.payment-methods {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0.8;
}

.payment-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
}

.pay-icon {
    height: 24px;
   filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s;
}



/* Article & Content Styling */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.article-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.article-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-body h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.article-body h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.article-body p {
    margin-bottom: 1.25rem;
    color: var(--text-main);
    font-size: 1.05rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.alert-box {
    background: #fff8eb;
    border-left: 4px solid var(--primary);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
}

/* Data Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.data-table th {
    background: #f8fafc;
    font-weight: 700;
    color: var(--secondary);
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* Accordion */
.accordion {
    margin-top: 2rem;
}

.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.25rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-body {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    background: #f8fafc;
}

.accordion-item.active .accordion-body {
    padding: 1.25rem;
    max-height: 500px;
    /* large enough */
}

/* Suggestion Box */
.suggestion-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-top: 0.5rem;
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    border: 1px solid #e2e8f0;
}

.suggestion-box.active {
    display: block;
}

.suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.1s;
}

.suggestion-item:hover {
    background: var(--bg-light);
    color: var(--primary);
}

/* Calendar */
.calendar-popup {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 1rem;
    z-index: 200;
    width: 300px;
    display: none;
    margin-top: 0.5rem;
    border: 1px solid #e2e8f0;
}

.calendar-popup.show {
    display: block;
}

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--secondary);
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    text-align: center;
}

.cal-cell {
    padding: 0.5rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.9rem;
}

.cal-cell:hover:not(.disabled) {
    background: var(--bg-light);
}

.cal-cell.today {
    background: var(--primary);
    color: white;
}

.cal-cell.disabled {
    color: #ccc;
    cursor: not-allowed;
}

/* Content Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(218, 146, 78, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #94a3b8;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .search-form-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        /* simple hidden for now, can transform to drawer if needed */
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .search-submit-btn {
        margin-top: 1rem;
    }
}

/* =========================================
   New Box/Grid Design (Premium Look)
   ========================================= */

/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Specific Column Spans */
.premium-box.main-guide {
    grid-column: span 7;
}

.premium-box.pricing-guide {
    grid-column: span 5;
}

.premium-box.policy-guide {
    grid-column: span 6;
}

.premium-box.faq-section {
    grid-column: span 6;
}

/* Premium Card/Box Style */
.premium-box {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.premium-box:nth-child(1) {
    animation-delay: 0.2s;
}

.premium-box:nth-child(2) {
    animation-delay: 0.4s;
}

.premium-box:nth-child(3) {
    animation-delay: 0.6s;
}

.premium-box:nth-child(4) {
    animation-delay: 0.8s;
}

.premium-box:nth-child(5) {
    animation-delay: 1.0s;
}

.premium-box:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px -12px rgba(218, 146, 78, 0.15),
        0 10px 20px -5px rgba(0, 0, 0, 0.06);
    border-color: rgba(218, 146, 78, 0.4);
}

/* Decorative Top Bar for Boxes */
.premium-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.3s;
}

.premium-box:hover::before {
    opacity: 1;
}

.box-header {
    margin-bottom: 2rem;
}

.box-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0.5rem 0;
    color: var(--secondary);
}

.badge-sm {
    background: rgba(218, 146, 78, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* CTA Box */
.cta-box {
    grid-column: 1 / -1;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary) 0%, #0f172a 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: var(--shadow-xl);
}

.cta-box h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #94a3b8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Steps Visualization */
.steps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.step-num {
    background: var(--primary);
    color: white;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

/* Tables */
.premium-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.premium-table th {
    text-align: left;
    padding: 0.75rem 0;
    border-bottom: 2px solid #e2e8f0;
    color: var(--text-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.premium-table td {
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
    font-size: 0.95rem;
    font-weight: 600;
}

.premium-table tr:last-child td {
    border-bottom: none;
}

.class-tag {
    background: #f1f5f9;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-family: monospace;
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.8rem;
    border: 1px solid #e2e8f0;
}

.price {
    font-weight: 800;
    color: var(--primary);
}

.tip-box {
    background: #fffbf7;
    border: 1px solid rgba(218, 146, 78, 0.2);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

/* Policy Grid */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.policy-item {
    background: #f8fafc;
    padding: 1rem 0.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #e2e8f0;
}

.policy-time {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.policy-refund {
    display: block;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 800;
}

/* Payment Brands */
.payment-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.pay-brand {
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-main);
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: default;
}

.pay-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Brand Specific Colors */
.pay-brand.bkash {
    color: var(--brand-bkash);
    border-color: rgba(226, 19, 110, 0.2);
}

.pay-brand.nagad {
    color: var(--brand-nagad);
    border-color: rgba(236, 28, 36, 0.2);
}

.pay-brand.rocket {
    color: var(--brand-rocket);
    border-color: rgba(140, 52, 148, 0.2);
}

.pay-brand.upay {
    color: var(--brand-upay);
    border-color: rgba(0, 129, 199, 0.2);
}

.pay-brand.visa {
    color: var(--brand-visa);
    border-color: rgba(26, 31, 113, 0.2);
}

.pay-brand.mastercard {
    color: var(--brand-mastercard);
    border-color: rgba(235, 0, 27, 0.2);
}

.pay-brand.bkash:hover {
    background: var(--brand-bkash);
    color: white;
    border-color: var(--brand-bkash);
}

.pay-brand.nagad:hover {
    background: var(--brand-nagad);
    color: white;
    border-color: var(--brand-nagad);
}

.pay-brand.rocket:hover {
    background: var(--brand-rocket);
    color: white;
    border-color: var(--brand-rocket);
}

.pay-brand.upay:hover {
    background: var(--brand-upay);
    color: white;
    border-color: var(--brand-upay);
}

.pay-brand.visa:hover {
    background: var(--brand-visa);
    color: white;
    border-color: var(--brand-visa);
}

.pay-brand.mastercard:hover {
    background: var(--brand-mastercard);
    color: white;
    border-color: var(--brand-mastercard);
}

/* Tablet/Mobile Adjustments for Grid */
@media (max-width: 992px) {

    .premium-box.main-guide,
    .premium-box.pricing-guide,
    .premium-box.policy-guide,
    .premium-box.faq-section {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .search-wrapper {
        padding: 1.5rem;
        margin-top: -2rem;
    }


   
    .search-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-control {
        height: 50px;
    }

    .search-submit-btn {
        margin-top: 0.5rem;
        height: 50px;
    }

    /* Mobile Menu */
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
        animation: fadeInDown 0.3s ease-out forwards;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Box Adjustments */
    .premium-box {
        padding: 1.5rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .policy-grid {
        grid-template-columns: 1fr;
    }

    .payment-row {
        gap: 0.5rem;
    }

    .pay-brand {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-col h4 {
        margin-bottom: 1rem;
    }

    .footer-col div[style*="display: flex"] {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .premium-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .hero {
        padding: 2rem 0 5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}