/* Hero Section Styles */
#hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

#hero .hero-content {
    max-width: 600px;
    margin: 0 auto;
}

#hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.2em;
}

/* Contact Us Section Styles */
#contact-us {
    padding: 60px 20px;
    text-align: center;
}

#contact-us h4 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#contact-us p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Form Section Styles */
#contact-form {
    padding: 60px 20px;
    text-align: left;
}

#contact-form h4 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

#contact-form form {
    max-width: 600px;
    margin: 0 auto;
}

#contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact-form input[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#contact-form input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Map Section Styles */
#map {
    padding: 60px 20px;
    text-align: center;
}

#map h4 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#map iframe {
    width: 100%;
    max-width: 600px;
    height: 450px;
    border: 0;
}

/* Footer Styles */
#footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

#footer a {
    color: #fff;
    margin: 0 10px;
}

#footer a:hover {
    text-decoration: underline;
}