 <style>
        body {
            margin: 0;
            font-family: 'Segoe UI', Arial, sans-serif;
            background-color: #ffffff;
            color: #333;
        }

        header {
            background: #2E7D32;
            color: white;
            padding: 15px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header h1 {
            margin: 0;
            font-size: 24px;
        }

        nav a {
            color: white;
            margin-left: 20px;
            text-decoration: none;
            font-weight: 500;
        }

        .hero {
            padding: 60px 40px;
            background: #F1F8E9;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

        .hero-text {
            flex: 1;
            min-width: 300px;
        }

        .hero-text h2 {
            font-size: 36px;
            color: #2E7D32;
        }

        .hero-text p {
            font-size: 18px;
            margin: 20px 0;
        }

        .cta-btn {
            display: inline-block;
            padding: 12px 25px;
            background: #2E7D32;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
        }

        .hero-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
        }

        .trust-section {
            padding: 50px 40px;
            text-align: center;
        }

        .trust-boxes {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .box {
            width: 220px;
            padding: 20px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
        }

        .box h3 {
            color: #2E7D32;
            margin-bottom: 10px;
        }

        .how-it-works {
            background: #FAFAFA;
            padding: 50px 40px;
            text-align: center;
        }

        .steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin-top: 30px;
        }

        .step {
            width: 220px;
        }

        footer {
            background: #2E7D32;
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 14px;
        }

        footer p {
            margin: 5px 0;
        }
        
    </style>