body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

header {
    position: relative;
    height: 60vh;
    color: white;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
.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;
}

#aboutImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    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;
}

.who-we-are {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px;
    gap: 30px;
}

.text-content {
    flex: 1;
    max-width: 50%;
}

.text-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #006039;
}

.text-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-we-are-image {
    max-width: 70%;
    height: auto;
    border-radius: 5px;
}

@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;
    }
    
    .who-we-are {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .text-content {
        max-width: 100%;
    }

    .text-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .text-content p {
        font-size: 16px;
        line-height: 1.8;
        /*white-space: pre-line;*/
    }

    .image-content {
        display: none;
    }
}