/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 128, 0, 0.7), rgba(0, 128, 0, 0.7)), url('../images/hero-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

#hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

#hero p {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Section */
#contact {
    padding: 60px 20px;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #006400; /* Dark Green */
    margin-bottom: 30px;
    text-align: center;
}

/* Section Description */
.section-description {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

/* Contact Info Styling */
.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Form Styling */
form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

form .form-group {
    margin-bottom: 20px;
}

form .form-control {
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form button {
    font-size: 1.1rem;
}

/* Map Section */
#map {
    margin-top: 40px;
    text-align: center;
}



/* Responsive Design */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }

    #hero p {
        font-size: 1rem;
    }

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

    .section-description {
        font-size: 1rem;
    }

    .contact-info p,
    form .form-group label {
        font-size: 1rem;
    }

    .form-control {
        font-size: 1rem;
    }
}
