body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #031650; /* Beige color scheme */
    font-size: 18px; /* Increase font size */
}

header {
    position: sticky;
    top: 0;
    background-color: #031650; /* Tan color for the entire menu */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px; /* Increase padding for larger header */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensure header stays on top */
}

.logo img {
    max-width: 500px;
    max-height: 80px;
    width: auto;
    height: auto;
}

nav {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center; /* Center the menu options */
}

.menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
    margin-right: 20px;
    cursor: pointer;
    padding: 10px 20px; /* Increase padding for larger menu items */
    background-color: #031650; /* Tan color for menu items */
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #031650; /* Darker tan background for submenu */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.submenu li {
    padding: 10px 20px;
    white-space: nowrap;
}

.subnote {
    display: block;
    font-size: 14px; /* Increase subnote font size */
    color: #888;
}

.menu-item:hover .submenu {
    display: block;
}

.menu-buttons {
    display: flex;
    gap: 10px;
}

.btn-purple {
    background-color: #1a43bf;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
}

.btn-outline {
    background-color: transparent;
    color: rgb(255, 255, 255);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
}

.who-we-are {
    background-color: #ffffff; /* Slightly darker background */
    text-align: center;
    padding: 50px 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.who-we-are.visible {
    opacity: 1;
    transform: translateY(0);
}

.who-we-are h2 {
    font-size: 38px;
    margin-bottom: 5px;
}

.who-we-are h4 {
    font-size: 18px;
    margin-bottom: 2px;
}

.who-we-are p {
    font-size: 18px;
    margin-bottom: 30px;
    padding: 0 15%; /* Add 15% padding to the left and right */
}

.btn-learn-more {
    background-color: #1a43bf;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
}

@media only screen and (max-width: 800px) and (min-width: 300px){
    body {
        padding: 0; /* Remove padding on mobile */
    }

    header {
        justify-content: space-between; /* Adjust alignment for mobile */
    }

    .hamburger-menu {
        display: block;
        order: 2; /* Move hamburger menu to the far right */
    }

    .logo {
        order: 1; /* Ensure logo stays centered */
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%; /* Position menu below header */
        left: 0;
        background-color: #031650; /* Tan color for mobile menu */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        align-items: center; /* Center menu options */
    }

    .menu.active {
        display: flex;
    }

    .menu-item {
        width: 100%;
        text-align: center; /* Center text in menu items */
    }

    .submenu {
        position: static;
        box-shadow: none;
    }

    .menu-item::after {
        content: '▼';
        float: right;
    }

    .menu-item.active .submenu {
        display: block;
    }

    .menu-buttons {
        display: none; /* Hide buttons on mobile */
    }

    .who-we-are {
        padding: 30px 10px;
    }

    .who-we-are h2 {
        font-size: 28px;
    }

    .who-we-are h4 {
        font-size: 16px;
    }

    .who-we-are p {
        font-size: 14px;
    }
}
