/* ========================================
           ROOT & DESIGN TOKENS
        ======================================== */
        :root {
            --bg-primary: #050309;
            --bg-secondary: rgba(22, 30, 42, 0.91);
            --bg-card: rgba(18, 24, 35, 0.85);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-muted: rgba(255, 255, 255, 0.5);
            --accent-yellow: #FFD700;
            --accent-blue: #4A90D9;
            --accent-orange: #FF6B35;
            --accent-purple: #8B5CF6;
            --accent-gradient: linear-gradient(135deg, #4A90D9, #8B5CF6);
            --border-subtle: rgba(255, 255, 255, 0.08);
            --shadow-glow: 0 0 60px rgba(74, 144, 217, 0.15);
            --font-primary: 'Inter', sans-serif;
            --font-accent: 'Playfair Display', serif;
            --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* ========================================
           GLOBAL RESET & BASE
        ======================================== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            position: relative;
        }

        /* Grain / Noise Texture Overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.035;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
            background-repeat: repeat;
            background-size: 256px 256px;
        }

        /* ========================================
           VIGNETTE EFFECT ON SIDES
        ======================================== */
        .vignette-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            background: radial-gradient(ellipse at center, transparent 50%, rgba(5, 3, 9, 0.7) 100%);
        }

        .content-wrapper {
            position: relative;
            z-index: 2;
        }

        /* ========================================
           HERO SECTION
        ======================================== */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 0;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(180deg, rgba(5,3,9,0.4) 0%, rgba(5,3,9,0.85) 100%),
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover no-repeat;
            z-index: -1;
        }

        .hero-badge {
            display: inline-block;
            padding: 8px 24px;
            border: 1px solid var(--accent-yellow);
            border-radius: 50px;
            color: var(--accent-yellow);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 30px;
            animation: fadeInDown 0.8s ease-out;
        }

        .hero-title {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 10px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero-title .highlight-circle {
            position: relative;
            display: inline-block;
            color: var(--text-primary);
        }

        .hero-title .highlight-circle::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -15px;
            right: -15px;
            bottom: -10px;
            border: 3px solid var(--accent-yellow);
            border-radius: 50%;
            transform: rotate(-3deg);
            animation: drawCircle 1.5s ease-out 1s both;
        }

        @keyframes drawCircle {
            from { clip-path: inset(0 100% 0 0); }
            to { clip-path: inset(0 0 0 0); }
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: var(--text-secondary);
            max-width: 650px;
            margin: 0 auto 40px;
            font-weight: 300;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        /* ========================================
           SLIDESHOW GIF (inspired by Site C)
        ======================================== */
        .lifestyle-slideshow {
            position: relative;
            width: 100%;
            max-width: 800px;
            height: 533px;
            margin: 0 auto 50px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 0.8s ease-out 0.5s both;
        }

        .slideshow-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .slideshow-item.active {
            opacity: 1;
        }

        .slideshow-item .location-tag {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.65);
            backdrop-filter: blur(10px);
            padding: 8px 18px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .slideshow-item .location-tag i {
            color: var(--accent-orange);
        }

        .slideshow-progress {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 15px;
        }

        .slideshow-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--text-muted);
            transition: var(--transition-smooth);
            cursor: pointer;
        }

        .slideshow-dot.active {
            background: var(--accent-blue);
            width: 28px;
            border-radius: 4px;
        }

        /* ========================================
           COUNTDOWN TIMER
        ======================================== */
        .countdown-section {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(22, 30, 42, 0.4) 50%, var(--bg-primary) 100%);
        }

        .countdown-date {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--accent-yellow);
            letter-spacing: 1px;
            margin-bottom: 30px;
        }

        .countdown-wrapper {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .countdown-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            padding: 25px 30px;
            min-width: 120px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: var(--transition-smooth);
        }

        .countdown-item:hover {
            border-color: var(--accent-blue);
            box-shadow: var(--shadow-glow);
            transform: translateY(-4px);
        }

        .countdown-number {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .countdown-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--text-muted);
            margin-top: 8px;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 48px;
            background: var(--accent-gradient);
            color: #fff;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            text-decoration: none;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(74, 144, 217, 0.4);
            color: #fff;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* ========================================
           CONTENT SECTIONS
        ======================================== */
        .section-dark {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 800;
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title .accent {
            color: var(--accent-yellow);
        }

        /* ========================================
           SEMINER İÇERİK KUTUSU (Site A style)
        ======================================== */
        .content-box {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 50px;
            max-width: 780px;
            margin: 0 auto;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .content-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent-gradient);
        }

        .content-box h2 {
            font-size: 1.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 35px;
        }

        .content-list {
            list-style: none;
            padding: 0;
        }

        .content-list li {
            font-size: 1.15rem;
            padding: 14px 0;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transition: var(--transition-smooth);
        }

        .content-list li:last-child {
            border-bottom: none;
        }

        .content-list li:hover {
            padding-left: 10px;
            color: var(--accent-yellow);
        }

        .content-list .list-number {
            font-weight: 800;
            font-size: 1.3rem;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            min-width: 30px;
        }

        /* ========================================
           KİMDİR SECTION (Bio - Site A style)
        ======================================== */
        .bio-section {
            padding: 100px 0;
        }

        .bio-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            overflow: hidden;
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
        }

        .bio-image-wrapper {
            flex: 0 0 40%;
            max-width: 40%;
            position: relative;
            min-height: 400px;
            overflow: hidden;
        }

        .bio-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .bio-dot-pattern {
            position: absolute;
            top: 20px;
            left: -20px;
            width: 80px;
            height: 80px;
            background-image: radial-gradient(circle, var(--accent-blue) 2px, transparent 2px);
            background-size: 12px 12px;
            opacity: 0.6;
        }

        .bio-dot-pattern-bottom {
            position: absolute;
            bottom: 20px;
            right: -20px;
            width: 80px;
            height: 80px;
            background-image: radial-gradient(circle, var(--accent-blue) 2px, transparent 2px);
            background-size: 12px 12px;
            opacity: 0.6;
        }

        .bio-content {
            flex: 0 0 60%;
            max-width: 60%;
            padding: 45px;
        }

        .bio-content h2 {
            font-size: 1.8rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .bio-content h3 {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .bio-divider {
            width: 60px;
            height: 3px;
            background: var(--accent-gradient);
            border-radius: 2px;
            margin-bottom: 20px;
        }

        .bio-content p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .bio-signature {
            font-family: var(--font-accent);
            font-size: 1.4rem;
            font-style: italic;
            color: var(--accent-yellow);
            margin-top: 20px;
        }

        .bio-social {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 5px;
        }
		
		/* ========================================
           ÜCRETSİZ E KİTAP
        ======================================== */
        .bio-section-2 {
    padding: 100px 0;
}

/* ANA KART */
.bio-card-2 {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.bio-card-2:hover {
    transform: translateY(-5px);
}

/* RESİM */
.bio-image-wrapper-2 {
    position: relative;
    width: 100%;
    height: 100%;
}

.bio-image-wrapper-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NOKTA DESENLER */
.bio-dot-pattern-2 {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, var(--accent-blue) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.6;
}

.bio-dot-pattern-bottom-2 {
    position: absolute;
    bottom: 20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, var(--accent-blue) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.6;
}

/* İÇERİK */
.bio-content-2 {
    padding: 45px;
}

.bio-content-2 h2 {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.bio-divider-2 {
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
    margin-bottom: 20px;
}

.bio-content-2 h4 {
    line-height: 40px;
}

/*  MOBİL */
@media (max-width: 768px) {

    .bio-card-2 {
        grid-template-columns: 1fr;
    }

    /* RESMİ KÜÇÜLT */
    .bio-image-wrapper-2 {
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bio-image-wrapper-2 img {
        max-height: 100%;
        width: auto;
        object-fit: contain;
    }

    .bio-content-2 {
        padding: 25px;
        text-align: center;
    }

    .bio-content-2 h4 {
        line-height: 30px;
    }
}

        /* ========================================
           3 ADIM SECTION
        ======================================== */
        .steps-section {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(22, 30, 42, 0.3) 50%, var(--bg-primary) 100%);
        }

        .step-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent-gradient);
            border-radius: 0 0 4px 4px;
        }

        .step-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-blue);
            box-shadow: var(--shadow-glow);
        }

        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            margin: 0 auto 20px;
        }

        .step-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .step-card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
        }

        /* ========================================
           FAQ SECTION (Site B style - Light BG)
        ======================================== */
        .faq-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #f0f4ff 0%, #e8ecf8 100%);
            position: relative;
        }

        .faq-section .section-title {
            color: #1a1a2e;
        }

        .faq-accordion {
            max-width: 780px;
            margin: 0 auto;
        }

        .faq-item {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 14px;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            transition: var(--transition-smooth);
        }

        .faq-item:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 22px 28px;
            cursor: pointer;
            font-size: 1.05rem;
            font-weight: 500;
            color: #1a1a2e;
            transition: var(--transition-smooth);
            user-select: none;
        }

        .faq-question:hover {
            color: var(--accent-blue);
        }

        .faq-icon {
            font-size: 1.4rem;
            color: var(--accent-blue);
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 15px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 28px 22px;
            font-size: 0.95rem;
            color: #555;
            line-height: 1.8;
        }

        /* ========================================
           FORM SECTION
        ======================================== */
        .form-section {
            padding: 100px 0;
            background: var(--bg-secondary);
            position: relative;
        }

        .form-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center top, rgba(74, 144, 217, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .signup-form {
            max-width: 520px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .signup-form .form-control {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 16px 20px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: var(--transition-smooth);
        }

        .signup-form select.form-control option {
            background-color: var(--bg-card); /* Veya koyu lacivert bir ton, ör: #121823 */
            color: var(--text-primary);
            font-size: inherit;
        }

        .signup-form .form-control::placeholder {
            color: var(--text-muted);
        }

        .signup-form .form-control:focus {
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 4px rgba(74, 144, 217, 0.15);
            color: var(--text-primary);
        }

        .signup-form .form-label {
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--text-secondary);
        }

        .form-cta {
            width: 100%;
            padding: 18px;
            font-size: 1.15rem;
            margin-top: 10px;
        }

        .form-note {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.8rem;
            margin-top: 15px;
        }

        /* ========================================
           SOCIAL PROOF
        ======================================== */
        .social-proof {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .avatar-stack {
            display: flex;
        }

        .avatar-stack .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--bg-primary);
            margin-left: -12px;
            background: var(--accent-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
        }

        .avatar-stack .avatar:first-child {
            margin-left: 0;
        }

        .social-proof-text {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .social-proof-text strong {
            color: var(--accent-yellow);
        }

        .stars {
            color: var(--accent-yellow);
            font-size: 0.9rem;
        }

        /* ========================================
           TESTIMONIALS
        ======================================== */
        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            padding: 30px;
            height: 100%;
            transition: var(--transition-smooth);
        }

        .testimonial-card:hover {
            border-color: var(--accent-blue);
            transform: translateY(-5px);
        }

        .testimonial-stars {
            color: var(--accent-yellow);
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .testimonial-author {
            font-weight: 600;
            font-size: 0.9rem;
        }

        .testimonial-role {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ========================================
           FOOTER
        ======================================== */
        .site-footer {
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid var(--border-subtle);
            background: var(--bg-primary);
        }

        .site-footer p {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* ========================================
           ANIMATIONS
        ======================================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========================================
           FLOATING PARTICLES
        ======================================== */
        .particle {
            position: fixed;
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--accent-blue);
            pointer-events: none;
            z-index: 1;
            opacity: 0;
            animation: floatParticle 15s infinite linear;
        }

        @keyframes floatParticle {
            0% {
                opacity: 0;
                transform: translateY(100vh) rotate(0deg);
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                opacity: 0;
                transform: translateY(-100vh) rotate(720deg);
            }
        }

        /* ========================================
           BRUSH UNDERLINE (Site C inspired)
        ======================================== */
        .brush-underline {
            position: relative;
            display: inline-block;
        }

        .brush-underline::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: -5px;
            right: -5px;
            height: 12px;
            background: var(--accent-blue);
            opacity: 0.3;
            border-radius: 4px;
            transform: skewX(-5deg);
        }

        /* ========================================
           RESPONSIVE
        ======================================== */
        @media (max-width: 768px) {
            .bio-image-wrapper,
            .bio-content {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .bio-image-wrapper {
                min-height: 300px;
            }

            .bio-content {
                padding: 30px;
            }

            .content-box {
                padding: 30px 20px;
            }

            .countdown-item {
                min-width: 100px;
                padding: 18px 20px;
            }

            .countdown-number {
                font-size: 2.5rem;
            }

            .lifestyle-slideshow {
                height: 260px;
                margin-left: 15px;
                margin-right: 15px;
            }
        }

        @media (max-width: 576px) {
            .countdown-wrapper {
                gap: 10px;
            }

            .countdown-item {
                min-width: 70px;
                padding: 14px;
            }

            .countdown-number {
                font-size: 2rem;
            }

            .countdown-label {
                font-size: 0.6rem;
                letter-spacing: 1.5px;
            }

            .faq-question {
                font-size: 0.95rem;
                padding: 18px 20px;
            }
        }