* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', Arial, sans-serif;
}

:root {
    --primary: #CC1013;
    --primary-hover: #F50505;
    --secondary: #085FCB;
    --secondary-hover: #064ca3;
    --background: #FFFFFF;
    --text-dark: #1F2937;
    --text-light: #4B5563;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
    --border-radius-pill: 300px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--secondary);
    transition: all 0.3s ease;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: #f8fafc;
}

.bg-primary {
    background-color: var(--primary);
    color: white;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    outline: none;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.btn:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
    border-radius: var(--border-radius-pill);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    color: white;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 24px 0;
    background-color: var(--secondary);
}

header.scrolled {
    background-color: rgba(8, 95, 203, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
}

header.scrolled .logo img {
    height: 50px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e0e0e0;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
}

.lang-selector button {
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
    padding: 0;
}

.lang-selector button .fi {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.lang-selector button:hover {
    transform: scale(1.1);
}

.lang-selector button.active {
    border-color: #fff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* Mobile Responsiveness Rules */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: row;
        gap: 8px;
    }

    .nav-links {
        display: none;
    }

    .desktop-nav {
        gap: 0.5rem;
    }

    .lang-selector {
        gap: 6px;
        margin-right: 4px;
    }

    .lang-selector button {
        width: 22px;
        height: 22px;
        border-width: 1px;
    }

    .logo img {
        height: 38px;
    }

    header.scrolled .logo img {
        height: 32px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .desktop-nav .btn {
        padding: 8px 14px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: radial-gradient(circle at top, #374151 0%, #111827 100%);
    overflow: hidden;
}



.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: white;
}

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    font-weight: 500;
    max-width: 600px;
    margin-bottom: 32px;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-trust-badges span {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.hero-trust-badges span i {
    margin-right: 8px;
    color: var(--primary);
}

@media (max-width: 768px) {
    .hero {
        background: radial-gradient(circle at top, #4b5563 0%, #111827 100%);
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-top: 40px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-trust-badges {
        gap: 12px;
    }

    .hero-trust-badges span {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* ========================================
   Experience Section — "Discover the Babyland Difference"
   ========================================*/
.experience-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: visible;
}

.experience-header {
    margin-bottom: 56px;
}

/* --- Video Container --- */
.experience-video-container {
    max-width: 800px;
    margin: 0 auto 64px auto;
}

.featured-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.shadow-premium {
    box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.25);
    border: 4px solid rgba(255, 255, 255, 0.15);
}

.featured-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Benefits Grid --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

/* --- Value Cards --- */
.value-card {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius-md);
    border-top: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.value-card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.value-card:hover .value-card-icon {
    transform: scale(1.1);
}

.value-card-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.value-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* --- Premium Highlight Box --- */
.premium-highlight-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-left: 5px solid var(--primary);
    padding: 32px 40px;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.highlight-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 48px;
    height: 48px;
    background-color: rgba(251, 191, 36, 0.12);
    border-radius: 50%;
    color: #FBBF24;
    font-size: 1.5rem;
}

.premium-highlight-box p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-dark);
    margin: 0;
}

/* --- Experience Section Responsive --- */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .experience-header {
        margin-bottom: 40px;
    }

    .experience-video-container {
        margin-bottom: 48px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .featured-video-wrapper {
        border-radius: 12px;
    }

    .shadow-premium {
        border-width: 3px;
    }

    .value-card {
        padding: 24px;
    }

    .premium-highlight-box {
        padding: 24px;
        flex-direction: column;
        gap: 16px;
    }

    .highlight-icon {
        min-width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .premium-highlight-box p {
        font-size: 1rem;
    }
}

/* ============================================
   PROGRAM CARDS — 5-card grid with photos
   ============================================ */
.program-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.program-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--secondary);
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.program-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.program-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.program-card:hover .program-card-img img {
    transform: scale(1.08);
}

.program-card-body {
    padding: 20px;
    text-align: center;
}

.program-card-badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: var(--border-radius-pill);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.program-card-age {
    font-weight: 700;
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 8px;
}

.program-card-desc {
    font-size: 0.88rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* Program Cards — Responsive */
@media (max-width: 1200px) {
    .program-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .program-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .program-card-img {
        height: 150px;
    }

    .program-card-body {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .program-card-grid {
        grid-template-columns: 1fr;
    }
}

/* Features */
.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card .icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

.feature-card h3 {
    margin-bottom: 16px;
}

/* Programs */
.programs-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Layered Program Cards */
.program-layered-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center 20%;
    /* Shifted slightly up to prioritize faces */
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-layered-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.15);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.program-info-layered {
    position: relative;
    z-index: 2;
    padding: 40px 32px;
    color: white;
    width: 100%;
}

.program-info-layered h3 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: white;
    /* Override default heading color */
}

.program-info-layered .age-range {
    font-weight: bold;
    color: #ffd700;
    /* Gold/yellow for contrast */
    margin-bottom: 16px;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.program-info-layered p:not(.age-range) {
    font-size: 1.1rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .programs-grid {
        gap: 32px;
    }

    .program-layered-card {
        min-height: 450px;
        background-position: center;
        /* Center on mobile to prevent extreme cropping */
    }

    .program-info-layered {
        padding: 24px 20px;
    }
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf5 100%);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.video-card {
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.video-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    background: var(--secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    padding: 6px 14px;
    border-radius: var(--border-radius-pill);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.video-tag.tag-trilingual {
    background: #059669;
}

.video-tag.tag-family {
    background: var(--primary);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.78%;
    /* 9:16 aspect ratio for Shorts */
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 20px 24px;
}

.video-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.video-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .video-info {
        padding: 16px 20px;
    }
}

/* Guarantee Section */
.guarantee h2 {
    color: white;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s;
    color: var(--primary);
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-light);
}

/* Footer */
footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 30px;
    align-items: start;
    text-align: left;
}

.footer-brand .footer-logo img {
    max-height: 80px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.footer-contact-links a i {
    color: var(--primary);
    width: 16px;
    text-align: center;
}

.footer-contact-links a:hover {
    color: var(--primary);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-socials a {
    color: var(--text-light);
    font-size: 1.25rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-contact-links a {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }
}

/* Modals */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--background);
    width: 90%;
    max-width: 800px;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-xl);
}

.modal-backdrop.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary);
}

/* Branch Options */
.branch-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.branch-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.branch-card:hover {
    background: white;
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.branch-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.branch-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
    flex-grow: 1;
}

.branch-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.btn-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: white !important;
    font-weight: 600;
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
    border-radius: var(--border-radius-pill);
    border: none;
    transition: transform 0.2s, filter 0.2s;
}

.btn-contact:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-instagram {
    background-color: #E1306C;
}

.btn-facebook {
    background-color: #1877F2;
}

.hurry-text {
    color: var(--primary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .branch-options {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .modal-content {
        padding: 24px;
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}