body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
}

.header {
    background-color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.header-nav a {
    text-decoration: none;
    color: #555;
    margin-left: 15px;
}

/* --- Updated Navigation Styles --- */
.main-nav {
    background-color: #2b68d3;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.nav-item {
    text-decoration: none;
    color: #fff;
    padding: 15px 25px;
    font-weight: regular;
    font-size: 14px;
    display: flex;
    align-items: center;
    background-color: #2b68d3;
    transition: background-color 0.3s ease;
}

.nav-item:hover {
    background-color: #4987dc;
}

.nav-item.active {
    background-color: #255bb2;
    border-bottom: 0px solid #f9c700;
}

.nav-item .icon {
    font-size: 1.2em;
    margin-right: 5px;
}
.content-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    background-color: #e6f0ff;
    color: #0c4384;
    padding: 10px;
    text-align: center;
    font-size: 18px;
    margin-top: 0;
}

.section-title {
    background-color: #f0f2f5;
    color: #0c4384;
    padding: 10px;
    font-weight: bold;
    border-left: 3px solid #0c4384;
    margin-top: 20px;
}

.arrow {
    font-size: 1.2em;
    margin-right: 5px;
}

.search-form {
    padding: 20px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-right: 20px;
}


/* All previous CSS from the last response goes here... */
/* All previous CSS from the last response goes here... */

/* --- New Mobile Styles for Slide Effect --- */
.menu-toggle {
    display: none;
    font-size: 2em;
    background: none;
    border: none;
    color: #0c4384;
    cursor: pointer;
}


.nav-item .icon {
    font-size: 1.2em;
    margin-right: 5px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}



@media only screen and (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 85px; /* Adjust based on header height */
        left: 0;
        background-color: #0c4384;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
		    font-weight: regular;
    font-size: 10px;
    }
    
    .main-nav.nav-active {
        max-height: 500px; /* A value larger than the menu's actual height */
    }

    .nav-item {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
}