body {
    background-color: #F8F1F1;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.navigation {
    width: 70%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.navlinks > a {
    color: #16697A;
    text-decoration: none;
    margin: 16px;
    font-size: 20px;
}

.navlinks > button {
    padding: 10px 20px;
    border-radius: 9999px;
    background-color: #16697A;
    color: #F8F1F1;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.navlinks > button:hover {
    background-color: #FFA62B;
}

.hero {
    width: 100%;
    height: 40vh;
    overflow: hidden;
    position: relative;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFA62B;
}

.hero-content h1 {
    font-size: 50px;
    margin: 0;
}

.hero-content h2 {
    color: #F8F1F1;
    font-size: 24px;
    margin-top: 10px;
}

.contact-form, .contact-info {
    width: 80%;
    margin: 4rem auto;
    background-color: #DB6400;
    padding: 20px;
    border-radius: 15px;
    color: #F8F1F1;
    box-sizing: border-box;
    text-align: center;
}

.contact-form h2, .contact-info h2 {
    color: #16697A;
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form label {
    width: 100%;
    margin: 10px 0 5px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

.contact-form button {
    padding: 10px 20px;
    border-radius: 9999px;
    background-color: #16697A;
    color: #F8F1F1;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background-color: #FFA62B;
}

footer {
    background-color: #DB6400;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 5rem;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        align-items: flex-start;
    }

    .navlinks {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .navlinks > a, .navlinks > button {
        margin: 10px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .contact-form, .contact-info {
        width: 100%;
        margin: 2rem auto;
    }
}
