/* Organization Banner */
.organization-banner {
    width: 100%;
    background: rgb(0, 100, 150);
    color: rgb(255, 255, 255);
    box-sizing: border-box;
}

.banner-content {
    width: 100%;
    padding: 10px 4%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.banner-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgb(255, 255, 255);
    line-height: 1;
}

/* Logo */
.logo-image {
    width: 70%;
}

/* Navigation Toggle */
.navbar-toggler {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border: none;
    background: transparent;
}

.nav-toggle-icon {
    font-weight: bold;
    color: rgb(255, 0, 0);
    font-size: 18px;
    line-height: 1;
}

/* Navigation Table */
.nav-table {
    width: 100%;
    background-color: #d1ecf1;
    color: rgb(0, 64, 133);
    border: none;
    border-collapse: collapse;
    display: none;
}

    .nav-table tr:nth-child(odd) {
        background-color: rgb(165, 216, 230);
    }

    .nav-table tr:nth-child(even) {
        background-color: rgb(209, 236, 241);
    }

    .nav-table td {
        padding: 15px;
        border: none;
    }

    .nav-table a {
        color: rgb(0, 64, 133);
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
    }

/* Navigation Items */
.navbar-nav .nav-item {
    margin: 0 10px;
}

/* Team Images Section */
.row-images {
    width: 100%;
}

.image-container {
    width: 100%;
}

.image-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.image-item {
    flex: 1 1 200px;
    box-sizing: border-box;
    padding: 15px;
    text-align: center;
}

.team-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Copyright */
.copyright-text {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 0;
}
