body, html {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

header {
    position: relative;
    height: 60vh;
    color: white;
    overflow: hidden;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}

#contactImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: -1;
}

.logo {
    position: absolute;
    left: 20px;
    width: 125px;
}

.about-title {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    text-align: center;
}

.about-title h1 {
    font-size: 80px;
    font-weight: bold;
    color: #006039;
    margin-bottom: 10%;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    border-radius: 5px;
}

.nav-buttons {
    position: absolute;
    top: 30px;
    right: 5%;
    display: flex;
    gap: 15px;
    z-index: 20;
}

.nav-buttons a {
    text-decoration: none;
    color: #672901;
    font-size: 18px;
    padding: 10px 20px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-buttons a:hover {
    background-color: #fff;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.nav-buttons.active {
    display: flex !important;
}

.contact-page {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-info {
    flex: 1;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    color: #006039;
}

.contact-form {
    flex: 2;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: #006039;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
.contact-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px; 
    margin-bottom: 15px; 
}

.contact-form .checkbox-label input {
    margin: 0;
    width: auto;
    accent-color: #006039;
}

  
.contact-form button {
    font-size: 15px;
    width: 100%;
    height: auto;
    width: 15%;
    background-color: rgba(0, 96, 57, 0.28);
    color: #006039;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
}

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

.map {
    flex: 2; 
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.map iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-buttons {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 20px;
        background: rgba(0, 0, 0, 0.9);
        padding: 10px;
        border-radius: 5px;
        width: 200px;
    }

    .nav-buttons a {
        display: block;
        text-align: left;
        padding: 10px;
        font-size: 18px;
        color: white;
        text-decoration: none;
    }

    .nav-buttons a:hover {
        background: white;
        color: black;
    }
    .about-title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .map {
        order: 2;
    }

    .contact-form {
        order: 3;
        width: 90%;
    }

    .contact-form button {
        width: 100%;
    }
}
