        :root {
            --light-bg: #ece5dd;
            --primary-text: #075e54;
            --accent: #25d366;
            --alt-text: #128c7e;
            --white: #ffffff;
            --shadow: rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light-bg);
            color: var(--primary-text);
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-text);
        }
        
        .logo-icon {
            color: var(--accent);
            font-size: 1.8rem;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--primary-text);
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .cta-button {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-button:hover {
            background-color: #128c7e;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }
        
        /* Hero Section */
        .hero {
            padding: 80px 0;
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .hero-content {
            flex: 1;
        }
        
        .hero h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--alt-text);
        }
        
        .hero-image {
            flex: 1;
            text-align: center;
        }
        
        .hero-image img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--shadow);
        }
        
        /* Features Section */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary-text);
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 60px;
            color: var(--alt-text);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .features {
            padding: 80px 0;
            background-color: var(--white);
            border-radius: 30px;
            margin: 40px 0;
            box-shadow: 0 5px 20px var(--shadow);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: var(--light-bg);
            border-radius: 15px;
            padding: 30px;
            transition: transform 0.3s;
            border: 2px solid transparent;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .feature-card p {
            color: var(--alt-text);
        }
        
        /* How It Works */
        .how-it-works {
            padding: 80px 0;
        }
        
        .process {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        
        .process-step {
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            text-align: center;
            padding: 30px;
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: 0 5px 15px var(--shadow);
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        /* Benefits Section */
        .benefits {
            padding: 80px 0;
            background-color: var(--white);
            border-radius: 30px;
            margin: 40px 0;
            box-shadow: 0 5px 20px var(--shadow);
        }
        
        .benefits-container {
            display: flex;
            gap: 40px;
            margin-top: 50px;
        }
        
        .benefit-group {
            flex: 1;
            background-color: var(--light-bg);
            padding: 30px;
            border-radius: 15px;
        }
        
        .benefit-group h3 {
            text-align: center;
            margin-bottom: 30px;
            color: var(--accent);
            font-size: 1.8rem;
        }
        
        .benefit-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            align-items: flex-start;
        }
        
        .benefit-icon {
            color: var(--accent);
            font-size: 1.2rem;
            margin-top: 5px;
        }
        
        /* Statistics Section */
        .statistics {
            padding: 80px 0;
            text-align: center;
        }
        
        .stats-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        
        .stat-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px var(--shadow);
            min-width: 250px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 10px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            text-align: center;
            background: linear-gradient(135deg, var(--accent) 0%, var(--alt-text) 100%);
            border-radius: 30px;
            margin: 80px 0;
            color: white;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        .cta-button.light {
            background-color: white;
            color: var(--primary-text);
        }
        
        .cta-button.light:hover {
            background-color: var(--light-bg);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-text);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h3 {
            margin-bottom: 25px;
            font-size: 1.5rem;
            color: var(--accent);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
        }
        
        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                text-align: center;
            }
            
            .benefits-container {
                flex-direction: column;
            }
            
            .nav-links {
                display: none;
            }
        }
