@import url('https://fonts.googleapis.com/css2?family=Georgia:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;600;700&family=Times+New+Roman&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --classic-blue: #1e3a8a;
    --royal-blue: #3b82f6;
    --light-blue: #dbeafe;
    --pure-white: #ffffff;
    --soft-white: #f8fafc;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-light: #e5e7eb;
    --shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}

body {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--pure-white);
    padding-top: 80px; /* Space for fixed header */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    background: var(--classic-blue);
    color: var(--pure-white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Navigation Styles */
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--pure-white);
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background: rgba(255, 255, 255, 0.2);
    color: #fbbf24;
    transform: translateY(-1px);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 25px;
    background: var(--pure-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Staffing Section Styles */
.staffing {
    margin-top: 20px;
}

.staffing h1 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--classic-blue);
    margin-bottom: 30px;
    font-weight: 700;
}

.staffing h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--royal-blue);
    font-weight: 600;
    border-bottom: 2px solid var(--light-blue);
    padding-bottom: 8px;
}

.staffing p {
    margin-bottom: 18px;
    text-align: justify;
    line-height: 1.7;
    color: var(--text-dark);
}

.staffing ul {
    margin: 20px 0;
    padding-left: 25px;
}

.staffing ul li {
    margin-bottom: 8px;
    color: var(--text-dark);
    position: relative;
}

.staffing ul li:before {
    content: "•";
    color: var(--royal-blue);
    font-weight: bold;
    position: absolute;
    left: -20px;
}

/* Footer Styles */
footer {
    background: var(--classic-blue);
    color: var(--pure-white);
    padding: 30px 20px;
    text-align: center;
    margin-top: 60px;
}

footer p {
    margin: 5px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    nav ul {
        display: none;
        position: fixed;
        top: 80px;
        right: 15px;
        width: 280px;
        background: var(--pure-white);
        flex-direction: column;
        padding: 20px 0;
        z-index: 999;
        border-radius: 8px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        border: 1px solid var(--border-light);
    }

    nav ul.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    nav ul li {
        margin: 0;
        width: 100%;
    }

    nav ul li a {
        color: var(--text-dark);
        font-size: 16px;
        font-weight: 500;
        padding: 12px 24px;
        display: block;
        width: 100%;
        border-radius: 0;
        text-align: left;
        border: none;
        border-bottom: 1px solid var(--border-light);
        transition: all 0.2s ease;
    }

    nav ul li:last-child a {
        border-bottom: none;
    }

    nav ul li a:hover,
    nav ul li a.active {
        background: var(--light-blue);
        color: var(--classic-blue);
        transform: none;
    }

    .header-content {
        position: relative;
    }

    .staffing h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .staffing h2 {
        font-size: 1.5rem;
    }

    .header-content {
        padding: 12px 15px;
    }

    .logo img {
        height: 40px;
    }

    .container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }

    .staffing h1 {
        font-size: 1.8rem;
    }

    .staffing h2 {
        font-size: 1.3rem;
        margin-top: 25px;
    }

    .staffing p {
        text-align: left;
    }

    .container {
        padding: 10px;
    }
}