body {
    background-color: #faf3e1;
    font-family: Nunito, Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #333;
}

/* Status Banner Styles */
.status-banner {
    background-color: #2c5aa0;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.status-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.status-left {
    flex: 0 0 auto;
    width: 100px;
}

.status-center {
    flex: 1;
    text-align: center;
}

.status-text {
    font-weight: 500;
}

.status-right {
    flex: 0 0 auto;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

h1 {
    color: #333;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
}

p {
    color: #666;
    line-height: 1.6;
}

.header {
    /* background-color: #faf3e1; */
    margin-bottom: 0;
    width: 100%;
    padding: 10px 0;
}

.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    min-height: 120px;
    background-image: url('AdobeStock_1217887258.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(250, 243, 225, 0.5);
    pointer-events: none;
}

.banner > * {
    position: relative;
    z-index: 1;
}

.logo-section {
    flex: 0 0 auto;
}

.title-section {
    flex: 1;
    text-align: center;
}

.title-section h1 {
    margin: 0;
    font-size: 2em;
    color: #333;
}

.menu-section {
    flex: 0 0 auto;
}

.header-logo {
    height: 100px;
    width: auto;
    max-width: 120px;
}

/* Navigation Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.menu li {
    margin: 0;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.menu a:hover {
    background-color: rgba(96, 139, 168, 0.2);
    color: #2c5aa0;
}

.menu a:active,
.menu a[href="index.html"] {
    background-color: rgba(96, 139, 168, 0.3);
    color: #2c5aa0;
}

/* Mission Section Styles */
.main {
    padding: 40px 20px;
}

.mission {
    background-image: url('AdobeStock_1246083075.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(250, 243, 225, 0.9);
    pointer-events: none;
}

.mission-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.mission-logo-section {
    flex: 0 0 auto;
}

.mission-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 2.5em;
    margin: 0 0 20px 0;
    color: #2c5aa0;
    font-weight: 700;
}

.mission-text p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .banner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 10px;
        min-height: unset;
    }
    .logo-section {
        order: 1;
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .header-logo {
        height: 260px;
        width: 260px;
        max-width: 260px;
        max-height: 260px;
        object-fit: contain;
    }
    .title-section {
        order: 2;
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 10px;
    }
    .title-section h1 {
        font-size: 2em;
        margin: 0;
    }
    .menu-section {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
    .menu-list {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .banner .title-section {
        display: flex;
    }
}