
        :root {
            --primary: #7c3aed;
            --primary-light: #a855f7;
            --secondary: #f59e0b;
            --accent: #ec4899;
            --success: #10b981;
            --warning: #f97316;
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-accent: #fef3c7;
            --text-primary: #1e293b;
            --text-secondary: #475569;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --border-light: #f1f5f9;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --radius: 20px;
            --radius-lg: 28px;
            --radius-xl: 36px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Manrope', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-primary);
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-light);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 16px 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            font-size: 20px;
            color: var(--primary);
        }

        .logo {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 900;
            font-size: 20px;
            box-shadow: var(--shadow-lg);
        }

        .spots-badge {
            background: linear-gradient(135deg, var(--secondary), var(--warning));
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            box-shadow: var(--shadow);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Hero Section */
        .hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .hero-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .hero h1 {
            font-size: clamp(32px, 6vw, 56px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff, #f1f5f9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(16px, 3vw, 20px);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 32px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .btn {
            padding: 16px 32px;
            border-radius: 16px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn::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;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--secondary), var(--warning));
            color: white;
            box-shadow: var(--shadow-xl);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-2xl);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .hero-image {
            width: 100%;
            max-width: 500px;
            height: 350px;
            object-fit: cover;
            border-radius: var(--radius);
            box-shadow: var(--shadow-2xl);
            margin: 0 auto;
            display: block;
            border: 4px solid rgba(255, 255, 255, 0.2);
        }

        /* About Section */
        .about-section {
            padding: 20px 0;
            background: var(--bg-secondary);
            position: relative;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, var(--bg-primary), transparent);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: clamp(28px, 5vw, 42px);
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--text-primary);
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-text {
            order: 2;
        }

        .about-text h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .about-text p {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 16px;
            line-height: 1.7;
        }

        .about-image {
            order: 1;
            width: 100%;
            max-width: 500px;
            height: 400px;
            object-fit: cover;
            border-radius: var(--radius);
            box-shadow: var(--shadow-xl);
            margin: 0 auto;
            display: block;
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: var(--bg-primary);
            position: relative;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .feature-card {
            background: var(--bg-secondary);
            padding: 40px 32px;
            border-radius: var(--radius);
            text-align: left;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .feature-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            position: relative;
            z-index: 2;
            box-shadow: var(--shadow-lg);
            flex-shrink: 0;
        }

        .feature-title {
            font-weight: 700;
            font-size: 22px;
            color: var(--text-primary);
            position: relative;
            z-index: 2;
            margin: 0;
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 16px;
            position: relative;
            z-index: 2;
        }

        .features-image {
            width: 100%;
            max-width: 600px;
            height: 400px;
            object-fit: cover;
            border-radius: var(--radius);
            box-shadow: var(--shadow-xl);
            margin: 40px auto 0;
            display: block;
        }

        /* Mobile Optimizations for Features Section */
        @media (max-width: 767px) {
            .features-section {
                padding: 40px 0;
            }

            .features-grid {
                gap: 20px;
                margin-top: 30px;
            }

            .feature-card {
                padding: 24px 20px;
                border-radius: 16px;
            }

            .feature-header {
                gap: 12px;
                margin-bottom: 12px;
            }

            .feature-icon {
                width: 70px;
                height: 70px;
                font-size: 28px;
            }

            .feature-title {
                font-size: 18px;
                line-height: 1.3;
            }

            .feature-description {
                font-size: 14px;
                line-height: 1.5;
            }

            .features-image {
                height: 250px;
                margin: 24px auto 0;
                border-radius: 16px;
            }
        }

        @media (max-width: 480px) {
            .features-section {
                padding: 30px 0;
            }

            .features-grid {
                gap: 16px;
                margin-top: 20px;
            }

            .feature-card {
                padding: 20px 16px;
            }

            .feature-header {
                gap: 10px;
                margin-bottom: 10px;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .feature-title {
                font-size: 16px;
                line-height: 1.2;
            }

            .feature-description {
                font-size: 13px;
                line-height: 1.4;
            }

            .features-image {
                height: 200px;
                margin: 20px auto 0;
            }
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 30px 0;
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            position: relative;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: var(--bg-primary);
            padding: 28px 24px;
            border-radius: 20px;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
            position: relative;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -8px;
            left: 20px;
            font-size: 60px;
            color: var(--secondary);
            opacity: 0.2;
            font-family: serif;
            line-height: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 18px;
            flex-shrink: 0;
        }

        .testimonial-author-info {
            flex: 1;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 16px;
            margin-bottom: 2px;
        }

        .testimonial-location {
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 500;
        }

        .testimonial-rating {
            display: flex;
            gap: 2px;
            margin-bottom: 16px;
        }

        .star {
            color: #fbbf24;
            font-size: 16px;
        }

        .testimonial-text {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.6;
            font-style: italic;
            position: relative;
            z-index: 2;
        }

        .testimonial-date {
            color: var(--text-muted);
            font-size: 12px;
            margin-top: 16px;
            opacity: 0.7;
        }

        .testimonials-image {
            width: 100%;
            max-width: 500px;
            height: 350px;
            object-fit: cover;
            border-radius: var(--radius);
            box-shadow: var(--shadow-xl);
            margin: 40px auto 0;
            display: block;
            border: 4px solid var(--bg-primary);
        }

        /* Stats Section */
        .stats-section {
            padding: 30px 0;
            background: var(--bg-primary);
            position: relative;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-top: 60px;
        }

        .stat-card {
            background: var(--bg-secondary);
            padding: 32px 24px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .stat-number {
            font-size: clamp(36px, 5vw, 48px);
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 16px;
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            padding: 30px 0;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
            border-radius: 50%;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: clamp(28px, 5vw, 40px);
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* CTA Progress Bar */
        .cta-progress {
            margin: 0 auto 28px;
        }

        .progress-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .progress-label {
            font-weight: 700;
            letter-spacing: 0.2px;
            opacity: 0.95;
        }

        .progress-value {
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff, #f1f5f9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .progress-track {
            width: 100%;
            height: 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.25);
            overflow: hidden;
            box-shadow: inset 0 1px 2px rgba(0,0,0,0.08);
        }

        .progress-fill {
            height: 100%;
            width: 86%;
            background: linear-gradient(90deg, var(--secondary), var(--warning));
            box-shadow: 0 6px 12px rgba(0,0,0,0.08);
            border-radius: 999px;
            transition: width 0.6s ease;
            position: relative;
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 60%);
            mix-blend-mode: screen;
        }

        .progress-hint {
            font-size: 13px;
            margin-top: 10px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-white {
            background: white;
            color: var(--primary);
            box-shadow: var(--shadow-lg);
        }

        .btn-white:hover {
            background: var(--bg-secondary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        .cta-image {
            width: 100%;
            max-width: 600px;
            height: 400px;
            object-fit: cover;
            border-radius: var(--radius);
            box-shadow: var(--shadow-xl);
            margin: 40px auto 0;
            display: block;
            border: 4px solid rgba(255, 255, 255, 0.2);
        }

        /* Footer */
        .footer {
            background: var(--text-primary);
            color: white;
            text-align: center;
            padding: 40px 0;
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }

            .hero-text {
                text-align: left;
                margin: 0;
            }

            .hero-buttons {
                justify-content: flex-start;
                margin-bottom: 0px;
            }

            .about-content {
                grid-template-columns: 1fr 1fr;
                gap: 60px;
            }

            .about-text {
                order: 1;
            }

            .about-image {
                order: 2;
            }
        }

                @media (max-width: 767px) {
            .container {
                padding: 0 16px;
            }

            .hero {
                padding: 100px 0 30px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                margin-bottom: 0px;
                 
            }

            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .countdown-timer {
                gap: 12px;
            }

            .time-value {
                min-width: 70px;
                padding: 16px;
                font-size: 28px;
            }

            .about-image,
            .testimonials-image,
            .cta-image {
                height: 300px;
            }

            /* Testimonials mobile optimizations */
            .testimonials-grid {
                gap: 20px;
                margin-top: 40px;
            }

            .testimonial-card {
                padding: 24px 20px;
            }

            .testimonial-header {
                gap: 10px;
                margin-bottom: 14px;
            }

            .testimonial-avatar {
                width: 42px;
                height: 42px;
                font-size: 16px;
            }

            .testimonial-author {
                font-size: 15px;
            }

            .testimonial-location {
                font-size: 13px;
            }

            .testimonial-rating {
                margin-bottom: 14px;
            }

            .star {
                font-size: 14px;
            }

            .testimonial-text {
                font-size: 14px;
                line-height: 1.5;
            }

            .testimonial-date {
                font-size: 11px;
                margin-top: 14px;
            }

            /* Additional mobile optimizations */
            .section-header {
                margin-bottom: 40px;
            }

            .section-title {
                font-size: clamp(24px, 6vw, 32px);
            }

            .section-subtitle {
                font-size: 16px;
            }
        }

        /* Loading animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in:nth-child(1) { animation-delay: 0.1s; }
        .fade-in:nth-child(2) { animation-delay: 0.2s; }
        .fade-in:nth-child(3) { animation-delay: 0.3s; }
        .fade-in:nth-child(4) { animation-delay: 0.4s; }
