/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    min-height: 100vh;
}

/* Container and Layout */
.container {
    background-color: #fff;
    min-height: 100vh;
}

.image-container {
    margin: 20px auto;
}

/* Header Styles */
.header {
    background-color: #1a4b84;
    border-bottom: 4px solid #d4a017;
    width: 100%;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 40px 10px 40px;
    display: flex;
    align-items: center;
}

.header .logo {
    max-height: 70px;
    margin-right: 28px;
}

.header-text {
    color: white;
}

.header-text a {
    text-decoration: none;
    color: white;
}

.header-text h1 {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
}

.header-text .tagline {
    font-size: 16px;
    color: #d4a017;
    margin-top: -3px;
    font-style: italic;
}

/* Navigation Styles */
.main-navigation {
    background-color: #2c5aa0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.nav-menu li:last-child {
    border-right: none;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    background-color: #1a4b84;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: 20px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Menu States */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Main Content Area */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.content-wrapper {
    display: flex;
    gap: 30px;
    padding: 30px;
    min-height: 500px;
}

.main-content {
    flex: 1;
    padding-right: 30px;
}

.main-content h1 {
    color: #1a4b84;
    font-size: 32px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4a017;
}

.main-content h2 {
    color: #2c5aa0;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.main-content h3 {
    color: #1a4b84;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.main-content p {
    margin-bottom: 15px;
    /* text-align: justify; */
}

.main-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.main-content li {
    margin-bottom: 8px;
}

.main-content a {
    color: #2c5aa0;
    text-decoration: none;
}

.main-content a:hover {
    color: #1a4b84;
    text-decoration: underline;
}

.main-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsive Map Container */
.map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin: 20px 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Sidebar Styles */
.sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-widget {
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-widget h3 {
    color: #1a4b84;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4a017;
}

.sidebar-widget p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.sidebar-widget li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

.sidebar-widget li:last-child {
    border-bottom: none;
}

.sidebar-widget a {
    color: #2c5aa0;
    text-decoration: none;
}

.sidebar-widget a:hover {
    color: #1a4b84;
    text-decoration: underline;
}

/* Sidebar Logo Widget */
.logo-widget {
    text-align: center;
    padding: 15px;
}

.sidebar-logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Team Member Pages */
.main-content img[alt*="CPA"] {
    float: left;
    margin: 0 20px 20px 0;
    max-width: 200px;
}

/* Forms and Buttons */
button, input[type="submit"] {
    background-color: #2c5aa0;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

button:hover, input[type="submit"]:hover {
    background-color: #1a4b84;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

th {
    background-color: #f8f8f8;
    font-weight: 600;
    color: #1a4b84;
}

/* Footer */
.footer {
    background-color: #1a4b84;
    color: white;
    margin-top: 50px;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
}

/* .footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    opacity: 0.9;
} */




.footer p {
    margin-bottom: 10px;
}

.footer a {
    color: #d4a017;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .main-content {
        padding-right: 0;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide desktop navigation and show mobile version */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #2c5aa0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 20px;
        text-align: left;
        border-bottom: none;
    }
}

@media (max-width: 600px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }
    
    .header .logo {
        margin-right: 0;
        margin-bottom: 15px;
        max-height: 60px;
    }
    
    .header-text h1 {
        font-size: 28px;
    }
    
    .content-wrapper {
        padding: 20px;
    }
    
    .main-content h1 {
        font-size: 26px;
    }
    
    .main-content img[alt*="CPA"] {
        float: none;
        display: block;
        margin: 0 auto 20px;
        max-width: 150px;
    }
    
    .mobile-menu-toggle {
        margin-right: 10px;
    }
}

/* Print Styles */
@media print {
    .header, .main-navigation, .sidebar {
        display: none;
    }
    
    .content-wrapper {
        padding: 0;
    }
    
    .main-content {
        padding: 0;
    }
}