/* ===================================
   UmmahNest Styles
   Main stylesheet for all pages
   =================================== */

@keyframes brushReveal {
    from {
        width: 0%;
    }
    to {
        width: calc(100% + 8px);
    }
}

:root {
    --teal: #0F6D6A;
    --teal-dark: #0a4d4a;
    --teal-light: #f0f7f7;
    --gold: #C9A24D;
    --gold-dark: #a68446;
    --gold-light: #f9f4e8;
    --white: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #555555;
    --border: #e8eded;
    --radius: 24px;
    --shadow: 0 10px 40px rgba(15, 109, 106, 0.08);
    --red-alert: #d63031;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Centered Headings Everywhere */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    color: var(--teal-dark);
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    height: 120px;
    display: flex;
    align-items: center;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    color: var(--teal);
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-btn {
    background: var(--teal);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700 !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle .bar {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--teal);
    margin: 6px 0;
    transition: 0.4s;
    border-radius: 2px;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -7px);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateY(-100%);
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    visibility: hidden;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay a {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    color: var(--teal);
    font-weight: 700;
}

/* Hero */
.hero {
    padding: 60px 0;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, var(--gold-light) 0%, transparent 40%);
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-content {
    flex: 1.2;
    text-align: center;
}

.hero-content h1 {
    text-align: center;
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    margin-bottom: 24px;
    font-weight: 900;
}

.hero-content .subheadline {
    text-align: center;
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 24px auto;
    line-height: 1.5;
    font-weight: 700; /* Bold as requested */
}

.hero-content .emotional-line {
    text-align: center;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 56px; /* Increased spacing to fix touch issue */
    font-size: clamp(1rem, 1.3vw, 1.25rem);
}

/* Premium Brushstroke Highlight */
.brush-highlight {
    position: relative;
    display: inline-block;
    padding: 6px 12px;
    z-index: 1;
    line-height: 1.3;
}

.brush-highlight::after {
    content: "";
    position: absolute;
    left: -4px;
    bottom: 15%;
    width: calc(100% + 8px);
    height: 65%;
    background: linear-gradient(90deg, rgba(201, 162, 77, 0.45), rgba(230, 198, 106, 0.45));
    z-index: -1;
    transform: rotate(-0.6deg);
    border-radius: 12px 22px 14px 26px;
    pointer-events: none;
    animation: brushReveal 0.8s ease-out forwards;
}

.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.hero-video-box {
    width: 90%;
    max-width: 360px;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: #f1f4f4;
    position: relative;
    margin-top: -8rem;
    box-shadow: var(--shadow);
    border: 12px solid var(--white);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the video covers the area */
    border-radius: var(--radius); /* Match the border radius */
    z-index: 0; /* Send the video to the back */
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.6));
    color: white;
    padding: 32px;
    text-align: center;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(15, 109, 106, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--teal-dark);
    box-shadow: 0 15px 30px rgba(15, 109, 106, 0.3);
    color: white !important;
}

.btn-secondary {
    background: var(--white);
    color: var(--teal);
    border: 2px solid var(--teal);
}

/* Multiline Blinking Scarcity Box */
.scarcity-box {
    background: #fffafa;
    border: 1px solid #ffeded;
    padding: 16px 32px;
    border-radius: 16px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(214, 48, 49, 0.08);
    margin: 24px auto 0;
    animation: scarcityBlink 2s infinite ease-in-out;
}

.scarcity-line {
    display: block;
    color: var(--red-alert);
    font-weight: 800;
    text-align: center;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

@keyframes scarcityBlink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

/* Section Headings */
.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* Final CTA Styles */
#final-cta {
    background: radial-gradient(circle at center, var(--teal-light), var(--white) 60%, var(--gold-light) 90%);
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

#final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l15 15-15 15L15 15z' fill='%230F6D6A' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

.cta-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(15, 109, 106, 0.1);
    position: relative;
    z-index: 2;
}

.cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gold-highlight {
    background: linear-gradient(120deg, rgba(201, 162, 77, 0.15) 0%, rgba(201, 162, 77, 0.15) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 85%;
    padding: 0 4px;
}

.value-strip {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.value-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--white);
    border: 1.5px solid var(--teal);
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--teal);
    transition: all 0.3s ease;
}

.value-badge:hover {
    transform: translateY(-3px);
    background: var(--teal-light);
}

.initiative-box {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 48px;
    position: relative;
    animation: initiativeGlow 4s infinite alternate;
}

@keyframes initiativeGlow {
    from {
        box-shadow: 0 0 0 rgba(201, 162, 77, 0);
    }
    to {
        box-shadow: 0 0 25px rgba(201, 162, 77, 0.25);
    }
}

.initiative-title {
    color: var(--gold-dark);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.initiative-waiver {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
}

.progress-container {
    width: 100%;
    height: 12px;
    background: #f1f4f4;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    width: 38%; /* Based on 62/100 remaining */
    border-radius: 10px;
    transition: width 1s ease;
}

.initiative-footer {
    margin-top: 12px;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cta-btn-large {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    padding: 24px 60px;
    font-size: 1.25rem;
    border-radius: 100px;
    border: 2px solid transparent;
    box-shadow: 0 20px 40px rgba(15, 109, 106, 0.2);
    transition: all 0.4s ease;
}

.cta-btn-large:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(15, 109, 106, 0.3);
    color: white !important;
}

.trust-micro {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Mobile Sticky CTA */
#mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    z-index: 1000;
    border-top: 1px solid var(--border);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#mobile-sticky-cta.visible {
    transform: translateY(0);
}

/* Pain Section */
.pain-section {
    background: linear-gradient(135deg, #C9A24D 0%, #e7c86b 60%, #f4e3b2 100%);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.pain-card {
    background: #ffffff;
    padding: 48px 40px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid #C9A24D;
    text-align: center;
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.pain-section h2 {
    color: #0f3d3a;
}

.pain-section p {
    color: rgba(0, 0, 0, 0.75);
}

/* Pillars Section */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pillar {
    text-align: center;
    padding: 56px 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: 0.3s;
    background: var(--white);
}

.pillar:hover {
    transform: translateY(-10px);
    background: var(--teal-light);
    border-color: var(--teal);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.pillar-icon svg {
    width: 36px;
    fill: var(--teal);
}

/* Curriculum */
.curriculum-section {
    background: var(--teal-light);
}

.curr-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.curr-box {
    background: var(--white);
    padding: 56px;
    border-radius: var(--radius);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.curr-box h3 {
    color: var(--teal);
    margin-bottom: 32px;
    font-size: 1.8rem;
}

.curr-list {
    list-style: none;
    text-align: center;
}

.curr-list li {
    padding: 14px 0;
    border-bottom: 1px solid #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-weight: 500;
}

.curr-list li::before {
    content: "✦";
    color: var(--gold);
    font-size: 1.2rem;
}

/* Founder */
.founder-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background: var(--teal-light);
    padding: 80px 40px;
    border-radius: var(--radius);
    text-align: center;
}

.founder-visual {
    width: 160px;
    height: 160px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid var(--white);
    box-shadow: var(--shadow);
}

/* Form Card */
.form-card {
    max-width: 650px;
    margin: 0 auto;
    background: var(--white);
    padding: 56px;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.form-group label {
    font-weight: 700;
    font-size: 0.9rem;
    text-align: left;
    margin-left: 4px;
}

.form-group input, .form-group select {
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
}

/* Social Icons - PREMIUM STYLE */
.social-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--teal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    z-index: 1;
    transition: fill 0.4s ease;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    color: var(--white);
    background: var(--teal);
    box-shadow: 0 8px 20px rgba(15, 109, 106, 0.2);
}

.social-link:hover svg {
    fill: var(--gold);
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#backToTop svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

#backToTop:hover {
    transform: translateY(-5px);
    background: var(--teal-dark);
    box-shadow: 0 8px 25px rgba(15, 109, 106, 0.3);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: #fafafa;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-item {
    text-align: center;
}

.footer-item h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-item p, .footer-item a {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Mobile specific portrait video section */
.mobile-video-section {
    display: none;
    padding: 40px 0;
    background: var(--white);
}

@media (max-width: 992px) {
    /* Center align the logo */
    .logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-visual {
        display: flex;
        margin-top: 40px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .curr-split {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    #mobile-sticky-cta {
        display: block;
    }

    #backToTop {
        bottom: 90px;
    }

    .cta-card {
        padding: 56px 24px;
        border-radius: 30px;
    }

    .cta-card h2 {
        font-size: 2.1rem;
        line-height: 1.15;
    }

    .value-strip {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .value-badge {
        justify-content: center;
    }

    .initiative-box {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .initiative-waiver {
        font-size: 1.1rem;
    }

    .cta-btn-large {
        width: 100%;
        padding: 20px;
        font-size: 1.1rem;
    }

    /* ABOVE THE FOLD RULE: Headline, Sub, CTA, Scarcity */
    .hero {
        padding: 20px 0;
        min-height: calc(100vh - 80px);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .hero-flex {
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 1.9rem;
        margin-bottom: 12px;
    }

    .hero-content .subheadline {
        font-size: 0.95rem;
        margin-bottom: 12px;
        max-width: 90%;
    }

    .hero-content .emotional-line {
        font-size: 0.85rem;
        margin-bottom: 24px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        padding: 0 20px;
    }

    .hero-ctas .btn {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }

    .scarcity-box {
        width: 92%;
        margin: 10px auto 0;
        padding: 16px 10px;
    }

    .scarcity-line {
        font-size: clamp(0.7rem, 3.2vw, 0.82rem);
        letter-spacing: 0.2px;
    }

    .mobile-video-section {
        display: block;
    }

    footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        gap: 24px;
        margin-bottom: 30px;
    }

    .footer-item h4 {
        margin-bottom: 12px;
        font-size: 1rem;
    }

    .footer-item p, .footer-item a {
        margin-bottom: 4px;
        font-size: 0.85rem;
    }

    .copyright {
        padding-top: 24px;
    }

    .form-card {
        padding: 32px 20px;
    }

    .founder-box {
        padding: 40px 20px;
    }

    .curr-box {
        padding: 40px 20px;
    }
}

/* ===================================
   FEES PAGE STYLES
   =================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--white) 100%);
    padding: 160px 0 100px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    color: var(--teal-dark);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Fees Content */
.fees-content {
    padding: 80px 0;
}

.fees-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.fees-intro p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    text-align: left;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
    margin: 16px 0;
    font-family: 'Playfair Display', serif;
}

.pricing-card .price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 16px;
}

.discount-section {
    background: var(--teal-light);
    border-radius: var(--radius);
    padding: 48px;
    margin: 60px 0;
}

.discount-section h3 {
    margin-bottom: 24px;
}

.discount-list {
    max-width: 700px;
    margin: 0 auto;
}

.discount-item {
    background: var(--white);
    padding: 24px;
    margin: 16px 0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.discount-icon {
    background: var(--teal);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.discount-text {
    flex: 1;
}

.discount-text strong {
    color: var(--teal-dark);
    font-size: 1.1rem;
}

.discount-text p {
    margin: 4px 0 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.schedule-section {
    background: var(--gold-light);
    border-radius: var(--radius);
    padding: 48px;
    margin: 60px 0;
    text-align: center;
}

.schedule-section h3 {
    margin-bottom: 32px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
}

.schedule-item strong {
    display: block;
    color: var(--teal-dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.schedule-item p {
    color: var(--text-muted);
    margin: 0;
}

.commitment-box {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 32px;
    margin: 40px auto;
    max-width: 600px;
    text-align: center;
}

.commitment-box h4 {
    font-family: 'Playfair Display', serif;
    color: var(--teal-dark);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.commitment-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
}

.financial-aid {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    border-radius: var(--radius);
    padding: 60px;
    margin: 60px 0;
    text-align: center;
}

.financial-aid h3 {
    color: var(--white);
    margin-bottom: 24px;
}

.financial-aid p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.95;
}

.financial-aid a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 600;
}

.financial-aid a:hover {
    color: var(--gold-light);
}

.cta-section {
    text-align: center;
    padding: 60px 0;
}

.cta-section h3 {
    margin-bottom: 24px;
    font-size: 2rem;
}

.cta-section p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Responsive adjustments for fees page */
@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 80px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .discount-section,
    .schedule-section,
    .financial-aid {
        padding: 32px 24px;
    }
}