 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Header & Navigation */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ef4444;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #ef4444;
        }

        .register-btn {
            background: #e53935;
            color: white;
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }

        .register-btn:hover {
            background: #059669;
        }

        .login-btn {
            background: #e53935;
            color: white;
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }

        .login-btn:hover {
            background: #059669;
        }

        .login-btn a {
            text-decoration: none;
            color: white;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #fff5f5 0%, #ffe4e4 100%);
            padding: 120px 5% 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            color: #ef4444;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
        }

        .hero-features {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin: 2rem 0;
        }

        .hero-features div {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .hero-features i {
            color: #10b981;
            font-size: 1.2rem;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
        }

        /* Stats Section */
        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            padding: 60px 5%;
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .stat-card {
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .stat-card h2 {
            font-size: 3rem;
            color: #ef4444;
            margin-bottom: 0.5rem;
        }

        .stat-card p {
            color: #333;
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* How It Works */
        .how-it-works {
            padding: 80px 5%;
            background: #fff5f5;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #ef4444;
            margin-bottom: 3rem;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .step-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
        }

        .step-card:hover {
            transform: translateY(-10px);
        }

        .step-number {
            background: #ef4444;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .step-card h3 {
            color: #333;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .step-card p {
            color: #666;
            line-height: 1.8;
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 5%;
            background: white;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: #fff5f5;
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid #ffe4e4;
        }

        .testimonial-text {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-style: italic;
        }

        .stars {
            color: #fbbf24;
            margin-bottom: 1rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #ef4444;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .author-info h4 {
            color: #333;
            font-size: 1rem;
        }

        .author-info p {
            color: #999;
            font-size: 0.9rem;
        }

        /* Benefits */
        .benefits {
            padding: 80px 5%;
            background: linear-gradient(135deg, #fff5f5 0%, #ffe4e4 100%);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefit-item {
            display: flex;
            gap: 2rem;
            align-items: start;
        }

        .benefit-icon {
            font-size: 4rem;
            color: #ef4444;
        }

        .benefit-content h3 {
            color: #333;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .benefit-list {
            list-style: none;
        }

        .benefit-list li {
            padding: 0.8rem 0;
            color: #666;
            display: flex;
            align-items: start;
            gap: 0.5rem;
        }

        .benefit-list i {
            color: #10b981;
            margin-top: 0.3rem;
        }

        /* FAQ */
        .faq {
            padding: 80px 5%;
            background: white;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border: 2px solid #ffe4e4;
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #333;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #fff5f5;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            color: #666;
        }

        .faq-answer.active {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem;
        }

        /* Footer */
        footer {
            background: #ef4444;
            color: white;
            padding: 60px 5% 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            opacity: 0.9;
            transition: opacity 0.3s;
        }

        .footer-section a:hover {
            opacity: 1;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            background: rgba(255, 255, 255, 0.2);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s;
        }

        .social-links a:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
            padding: 80px 5%;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-btn {
            background: white;
            color: #ef4444;
            padding: 1rem 3rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .cta-btn:hover {
            transform: scale(1.05);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .hero {
                grid-template-columns: 1fr;
                padding-top: 100px;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .stats {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .cta-section h2 {
                font-size: 2rem;
            }
        }