body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745 !important;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #333 !important;
    padding: 10px 20px !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #28a745 !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.9), rgba(195, 207, 226, 0.7)), url('https://via.placeholder.com/1920x1080.png?text=Hero+Background');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    color: #fff;
}

.hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-buttons .btn-primary {
    background-color: #fff;
    color: #28a745;
    border: none;
}

.cta-buttons .btn-primary:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
}

.cta-buttons .btn-outline-light:hover {
    background-color: #28a745;
    border-color: #28a745;
    transform: scale(1.05);
}

/* How It Works Section */
.how-it-works-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 1rem;
    color: #666;
}

/* Features Section */
.features-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.features-section p {
    font-size: 1.1rem;
    color: #666;
}

.features-section img {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
}

.testimonial-card p {
    font-style: italic;
}

.testimonial-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
}

/* CTA Section */
.cta-section {
    background: #f5f7fa;
    padding: 80px 0;
}

.cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background-color: #28a745;
    border-color: #28a745;
    padding: 12px 40px;
}

.cta-section .btn-primary:hover {
    background-color: #218838;
    transform: scale(1.05);
}

/* Footer */
.footer h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;

}

.footer p, .footer a {
    font-size: 0.9rem;
    text-align: center;
}

.footer a:hover {
    color: #28a745;
}

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

    .hero-section .lead {
        font-size: 1.2rem;
    }

    .features-section h3 {
        font-size: 1.8rem;
    }

    .features-section img {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        text-align: center;
    }

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

    .hero-section .lead {
        font-size: 1rem;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
    }

    .how-it-works-section h2,
    .testimonials-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }
}