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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

.header {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 2rem 0;
    text-align: center;
}

.header h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #212529;
}

.header h2 {
    font-size: 1.4rem;
    color: #6c757d;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.header .tagline {
    font-size: 1rem;
    color: #868e96;
    font-style: normal;
}

.navigation {
    background: #ffffff;
    border-bottom: 1px solid #dee2e6;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #007bff;
    border-bottom-color: #007bff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 1rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #495057;
    margin: 2px 0;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.page-content {
    animation: fadeIn 0.3s ease-in;
}

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

.welcome-banner {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.welcome-banner h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #212529;
}

.welcome-banner p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.info-section {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.info-section h1,
.info-section h2 {
    color: #212529;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-section h1 {
    font-size: 2rem;
}

.info-section h2 {
    font-size: 1.5rem;
}

.info-section h3 {
    color: #495057;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-section p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.officers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.officer-card {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.officer-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.officer-title {
    color: #6c757d;
    font-size: 0.9rem;
}

.updates-section {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.update-item {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem 0;
}

.update-item:last-child {
    border-bottom: none;
}

.update-date {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.update-category {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.update-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.update-content {
    color: #6c757d;
    line-height: 1.6;
}

.contact-form {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #495057;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.btn-primary {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background: #0056b3;
}

.footer {
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #6c757d;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

.loading {
    text-align: center;
    padding: 4rem;
    color: #6c757d;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header h1 { font-size: 1.8rem; }
    .header h2 { font-size: 1.2rem; }
    
    .hamburger {
        display: flex;
    }

    .nav-container {
        justify-content: space-between;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .officers-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 1rem;
    }

    .welcome-banner,
    .info-section,
    .contact-form {
        padding: 1.5rem;
    }
}