* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #1f2937;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #16a34a 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            background: linear-gradient(135deg, #ffffff 0%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content .subheading {
            font-size: 1.5rem;
            color: #e2e8f0;
            margin-bottom: 2rem;
            font-weight: 400;
            line-height: 1.4;
        }

        .hero-description {
            font-size: 1.125rem;
            color: #cbd5e1;
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .cta-button {
            background: linear-gradient(135deg, #16a34a 0%, #10b981 100%);
            color: white;
            border: none;
            padding: 1.25rem 3rem;
            font-size: 1.125rem;
            font-weight: 600;
            border-radius: 0.75rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(22, 163, 74, 0.4);
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .hero-image {
            width: 100%;
            max-width: 500px;
            height: 400px;
            background: linear-gradient(135deg, #10b981 0%, #16a34a 100%);
            border-radius: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            color: white;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        /* Enhanced About Section */
        .about-section {
            background: linear-gradient(120deg, #e0f7ef 0%, #f8fafc 100%);
            padding: 6rem 0 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .about-icon {
            font-size: 3rem;
            color: #16a34a;
            margin-bottom: 1.5rem;
            display: block;
            text-align: center;
        }

        .about-highlight {
            background: #16a34a;
            color: #fff;
            padding: 0.25rem 0.75rem;
            border-radius: 0.5rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1rem;
        }

        /* Enhanced Features Section */
        .features {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.25rem;
            color: #6b7280;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            background: white;
            padding: 3rem;
            border-radius: 1.5rem;
            border: none;
            box-shadow: 0 8px 32px rgba(16, 185, 129, 0.08);
            position: relative;
            overflow: hidden;
            transition: box-shadow 0.3s, transform 0.3s;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -40px;
            left: -40px;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #16a34a33 0%, #10b98122 100%);
            border-radius: 50%;
            z-index: 0;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            z-index: 1;
            position: relative;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            background: none;
            color: #16a34a;
            width: auto;
            height: auto;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .feature-description {
            color: #6b7280;
            line-height: 1.6;
            font-size: 1.05rem;
        }

        /* Content Section Styles */
        .content-section {
            padding: 6rem 0;
        }

        .content-section.white {
            background: white;
        }

        .content-section.gray {
            background: #f9fafb;
        }

        .content-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .content-text {
            font-size: 1.125rem;
            line-height: 1.8;
            color: #4b5563;
            margin-bottom: 2rem;
        }

        /* Enhanced Privacy & Terms Section */
        .privacy-section, .terms-section {
            background: linear-gradient(120deg, #f8fafc 0%, #e0f7ef 100%);
            padding: 5rem 0 3rem 0;
            border-top: 1px solid #e5e7eb;
        }

        .privacy-section h3, .terms-section h3 {
            color: #16a34a;
            margin-top: 2rem;
            margin-bottom: 0.5rem;
        }

        .privacy-list, .terms-list {
            margin: 1.5rem 0 2rem 1.5rem;
            color: #4b5563;
            list-style: none;
        }

        .privacy-list li, .terms-list li {
            margin-bottom: 0.75rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .privacy-list li::before, .terms-list li::before {
            content: '\f058';
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #16a34a;
            position: absolute;
            left: 0;
            top: 0.1rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .pricing-card {
            background: white;
            padding: 2.5rem;
            border-radius: 1rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 2px solid #e5e7eb;
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            border-color: #16a34a;
            transform: translateY(-5px);
        }

        .pricing-card.featured {
            border-color: #16a34a;
            position: relative;
        }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #16a34a;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .pricing-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .pricing-price {
            font-size: 2rem;
            font-weight: 800;
            color: #16a34a;
            margin-bottom: 1rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            padding: 0.5rem 0;
            color: #6b7280;
        }

        .pricing-features li::before {
            content: '✓';
            color: #16a34a;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        /* Form Styles */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .form-input {
            padding: 0.75rem;
            border-radius: 0.5rem;
            border: 1px solid #e5e7eb;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #16a34a;
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        /* Testimonial Section */
        .testimonial {
            padding: 6rem 0;
            background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
            position: relative;
        }

        .testimonial::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
        }

        .testimonial-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .testimonial-quote {
            font-size: 1.5rem;
            color: #e2e8f0;
            font-style: italic;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .testimonial-author {
            font-size: 1.125rem;
            font-weight: 600;
            color: #10b981;
        }

        .testimonial-role {
            color: #9ca3af;
            margin-top: 0.5rem;
        }

        .quote-icon {
            font-size: 4rem;
            color: #16a34a;
            opacity: 0.3;
            margin-bottom: 2rem;
        }

        /* Stats Section */
        .stats {
            padding: 4rem 0;
            background: white;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat-item {
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: #16a34a;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #6b7280;
            font-weight: 500;
        }

        /* Footer CTA */
        .footer-cta {
            padding: 6rem 0;
            background: linear-gradient(135deg, #16a34a 0%, #10b981 100%);
            text-align: center;
        }

        .footer-cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-cta h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .footer-cta p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: white;
            color: #16a34a;
            padding: 1rem 2rem;
            border: none;
            border-radius: 0.75rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border: 2px solid white;
            border-radius: 0.75rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: white;
            color: #16a34a;
        }

        /* Footer */
        .footer {
            background: #1f2937;
            padding: 3rem 0;
            text-align: center;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .footer-logo-icon {
            background: #16a34a;
            padding: 1rem;
            border-radius: 0.75rem;
            color: white;
            font-size: 1.5rem;
        }

        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .footer-text {
            color: #9ca3af;
            margin-bottom: 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #10b981;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2rem;
            color: #6b7280;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content .subheading {
                font-size: 1.25rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .feature-card {
                padding: 2rem;
            }

            .testimonial-quote {
                font-size: 1.25rem;
            }

            .footer-cta h2 {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .about-section, .privacy-section, .terms-section {
                padding: 3rem 0 2rem 0;
            }
        }

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

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Scroll animations */
        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

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