/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

/* Navbar */
nav {
    background-color: #4CAF50;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.8rem;
    font-weight: bold;
}

nav .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav .nav-links li {
    display: inline;
}

nav .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav .nav-links a:hover {
    color: #ddd;
}

/* Hero Section */
.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.hero-content .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.hero-content .btn:hover {
    background-color: #45a049;
}

/* About Section */
.about-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: #fff;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.about-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.about-content ul li::before {
    content: '✔';
    color: #4CAF50;
    position: absolute;
    left: 0;
}

.about-content a {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.about-content a:hover {
    background-color: #45a049;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

/* How It Works Section */
.section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 300px;
}

.step img {
    width: 80px;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 1rem;
    line-height: 1.4;
}

/* Why Choose Us Section */
#why-us {
    background-color: #e8f5e9;
    padding: 4rem 2rem;
}

.features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    max-width: 300px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Footer */
footer {
    background-color: #4CAF50;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero {
        height: 70vh;
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }
}

/* Contact Section */
.contact-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.contact-section p {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #4CAF50;
    outline: none;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form .btn {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
    background-color: #45a049;
}

