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

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #ffffff;
            color: #1A1A1A;
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header / Hero */
        .hero {
            text-align: center;
            padding: 80px 0 60px;
            background: linear-gradient(to bottom, #f9fcfa, #ffffff);
        }

        .hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #1A1A1A;
        }

        .hero p {
            font-size: 1.25rem;
            color: #444;
            max-width: 700px;
            margin: 0 auto 32px;
        }

        .btn {
            display: inline-block;
            background-color: #2E8B57;
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
            transition: all 0.3s ease;
        }

        .btn:hover {
            background-color: #257047;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(46, 139, 87, 0.4);
        }

        /* Section Styling */
        section {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 48px;
            color: #1A1A1A;
        }

        /* Features Grid */
        .features-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
        }

        .feature-card {
            flex: 1;
            min-width: 280px;
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            background: #F0F9F4;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: #1A1A1A;
        }

        .feature-card p {
            color: #555;
        }

        /* Why Section */
        .why-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 48px;
            font-size: 1.25rem;
            color: #444;
        }

        /* Features Section Background */
        #features {
            background-color: #F9FCFA;
        }

        /* Testimonial */
        .testimonial {
            background-color: #2E8B57;
            color: white;
            padding: 40px;
            border-radius: 16px;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonial p {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 16px;
        }

        .testimonial .author {
            font-weight: 600;
            color: #e0f0e9;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            background: linear-gradient(to bottom, #ffffff, #f9fcfa);
        }

        .cta-section .btn {
            font-size: 1.25rem;
            padding: 18px 44px;
            margin-bottom: 12px;
        }

        .cta-section p {
            color: #666;
            font-size: 1rem;
        }

        /* Footer */
        footer {
            padding: 40px 0;
            text-align: center;
            color: #666;
            border-top: 1px solid #eee;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }

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

            .feature-card {
                min-width: 100%;
            }
        }
