
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header Styles */
        .header {
            background: #eff6ff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid #e5e7eb;
            position: sticky;
            top: 0;
            z-index: 50;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo-icon {
            width: 2rem;
            height: 2rem;
            color: #16a34a;
        }
        
        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #16a34a;
        }
        
        .nav {
            display: none;
            gap: 1.5rem;
        }
        
        .nav-link {
            color: #6b7280;
            text-decoration: none;
            transition: color 0.3s;
            cursor: pointer;
        }
        
        .nav-link:hover {
            color: #2563eb;
        }
        
        @media (min-width: 768px) {
            .nav {
                display: flex;
            }
        }
        
        /* Hero Section */
        .hero {
            padding: 5rem 0;
            text-align: center;
        }
        
        .badge {
            display: inline-block;
            background: #dbeafe;
            color: #1e40af;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }
        
        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-highlight {
            color: #2563eb;
        }
        
        .hero-description {
            font-size: 1.25rem;
            color: #6b7280;
            margin-bottom: 2rem;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 2rem;
        }
        
        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn-primary {
            background: #2563eb;
            color: white;
        }
        
        .btn-primary:hover {
            background: #1d4ed8;
        }
        
        .btn-outline {
            background: transparent;
            color: #374151;
            border: 1px solid #d1d5db;
        }
        
        .btn-outline:hover {
            background: #f9fafb;
        }
        
        .btn-green {
            background: #16a34a;
            color: white;
        }
        
        .btn-green:hover {
            background: #15803d;
        }
        
        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1.125rem;
        }
        
        @media (min-width: 640px) {
            .hero-title {
                font-size: 3.75rem;
            }
            
            .hero-buttons {
                flex-direction: row;
            }
        }
        
        .hero-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            font-size: 0.875rem;
            color: #6b7280;
        }
        
        .hero-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .check-icon {
            width: 1rem;
            height: 1rem;
            color: #16a34a;
        }
        
        /* Section Styles */
        .section {
            padding: 4rem 0;
        }
        
        .section-white {
            background: white;
        }
        
        .section-gray {
            background: #f9fafb;
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #111827;
            text-align: center;
            margin-bottom: 1rem;
        }
        
        .section-description {
            color: #6b7280;
            text-align: center;
            max-width: 32rem;
            margin: 0 auto 3rem;
        }
        
        /* Card Styles */
        .card-grid {
            display: grid;
            gap: 2rem;
        }
        
        @media (min-width: 768px) {
            .card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .card-grid-3 {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .card {
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .card-header {
            padding: 1.5rem;
            color: white;
            border-radius: 0.5rem 0.5rem 0 0;
        }
        
        .card-header-blue {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        }
        
        .card-header-green {
            background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
        }
        
        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }
        
        .card-description {
            opacity: 0.9;
        }
        
        .card-content {
            padding: 1.5rem;
        }
        
        .feature-list {
            list-style: none;
            margin-bottom: 1.5rem;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }
        
        .feature-icon {
            width: 1.25rem;
            height: 1.25rem;
            color: #16a34a;
            margin-top: 0.125rem;
            flex-shrink: 0;
        }
        
        /* Benefits Section */
        .benefit {
            text-align: center;
        }
        
        .benefit-icon {
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }
        
        .benefit-icon-blue {
            background: #dbeafe;
        }
        
        .benefit-icon-green {
            background: #dcfce7;
        }
        
        .benefit-icon-purple {
            background: #f3e8ff;
        }
        
        .benefit-icon svg {
            width: 2rem;
            height: 2rem;
        }
        
        .benefit-icon-blue svg {
            color: #2563eb;
        }
        
        .benefit-icon-green svg {
            color: #16a34a;
        }
        
        .benefit-icon-purple svg {
            color: #9333ea;
        }
        
        .benefit-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        /* Contact Form */
        .contact-grid {
            display: grid;
            gap: 2rem;
        }
        
        @media (min-width: 768px) {
            .contact-grid {
                grid-template-columns: 2fr 1fr;
            }
        }
        
        .form {
            background: white;
            padding: 2rem;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .form-grid {
            display: grid;
            gap: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .form-grid-2 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-label {
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: #374151;
        }
        
        .form-input {
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-select {
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem;
            background: white;
            font-size: 1rem;
        }
        
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 1rem;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem;
        }
        
        .checkbox {
            margin-top: 0.125rem;
        }
        
        .checkbox-label {
            font-weight: 500;
            margin-bottom: 0.25rem;
        }
        
        .checkbox-description {
            font-size: 0.875rem;
            color: #6b7280;
        }
        
        /* Contact Info */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .contact-card {
            background: white;
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .contact-card-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }
        
        .contact-icon {
            width: 1.25rem;
            height: 1.25rem;
            margin-top: 0.125rem;
            flex-shrink: 0;
        }
        
        .contact-icon-blue {
            color: #2563eb;
        }
        
        .contact-icon-green {
            color: #16a34a;
        }
        
        .contact-label {
            font-weight: 500;
            margin-bottom: 0.25rem;
        }
        
        .contact-link {
            color: #2563eb;
            text-decoration: none;
        }
        
        .contact-link:hover {
            text-decoration: underline;
        }
        
        .contact-link-green {
            color: #16a34a;
        }
        
        .contact-badge {
            display: inline-block;
            background: #dcfce7;
            color: #15803d;
            padding: 0.125rem 0.5rem;
            border-radius: 0.25rem;
            font-size: 0.75rem;
            margin-left: 0.5rem;
        }
        
        .contact-note {
            font-size: 0.75rem;
            color: #6b7280;
            margin-top: 0.25rem;
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            color: white;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .cta-description {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: #dbeafe;
        }
        
        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
        }
        
        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
            }
        }
        
        .btn-white {
            background: white;
            color: #2563eb;
        }
        
        .btn-white:hover {
            background: #f9fafb;
        }
        
        /* Footer */
        .footer {
            background: #111827;
            color: white;
            padding: 2rem 0;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        
        @media (min-width: 768px) {
            .footer-content {
                flex-direction: row;
            }
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .footer-logo-icon {
            width: 1.5rem;
            height: 1.5rem;
            color: #16a34a;
        }
        
        .footer-logo-text {
            font-size: 1.25rem;
            font-weight: 700;
        }
        
        .social-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        
        .social-link {
            color: #9ca3af;
            transition: color 0.3s;
        }
        
        .social-link:hover {
            color: #60a5fa;
        }
        
        .social-link-pink:hover {
            color: #f472b6;
        }
        
        .social-link-green:hover {
            color: #4ade80;
        }
        
        .social-icon {
            width: 1.25rem;
            height: 1.25rem;
        }
        
        .contact-links {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .contact-links .social-link:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #374151;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
        }
        
        .footer-bottom-content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        
        @media (min-width: 768px) {
            .footer-bottom-content {
                flex-direction: row;
            }
        }
        
        .footer-text {
            color: #9ca3af;
        }
        
        .footer-links {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .footer-link {
            font-size: 0.875rem;
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-link:hover {
            color: white;
        }
        
        /* Loading States */
        .btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        /* Responsive Design */
        @media (max-width: 767px) {
            .container {
                padding: 0 1rem;
            }
            
            .hero {
                padding: 3rem 0;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .hero-features {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
        }
    