body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #1A1A1A; /* Dark background */
    color: #EAEAEA; /* Light text for contrast */
}

header {
    background: #322E85; /* Company primary color */
    color: #fff;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
}

header .logo {
    height: 50px;
    margin-right: 1rem;
}

header h1 {
    margin: 0;
    font-size: 1.8rem;
}

nav {
    position: relative;
}

#menu {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

#menu li {
    margin: 0;
}

#menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

#menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

main {
    padding: 2rem;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    margin-bottom: 2rem;
}

.team-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    background: #322E85;
    color: white;
    border-radius: 8px;
    text-align: center;
    padding: 1rem;
    width: 200px;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

footer {
    background: #322E85; /* Company primary color */
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Ensure footer sticks to the bottom of the page */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer {
    flex-shrink: 0;
}

/* Responsive menu */
@media (max-width: 768px) {
    #menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: #444;
        width: 200px;
        border: 1px solid #322E85;
    }

    #menu.show {
        display: flex;
    }

    #menu-toggle {
        display: block;
    }
}
