/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sea-blue: #0077be;
    --dark-sea-blue: #005a87;
    --navy: #1a3a5f;
    --burgundy: #8B0000;
    --dark-burgundy: #660000;
    --shiny-gold: #FFD700;
    --light-gold: #FFEC8B;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #343a40;
    --white: #ffffff;
    --red: #dc3545;
    --teal: #20c997;
    --indigo: #6610f2;
    --card-bg: #f8f9fa;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --dark-bg: rgba(0, 0, 0, 0.9);
    --gradient-primary: linear-gradient(135deg, var(--sea-blue) 0%, var(--dark-sea-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, #1a3a5f 0%, #2a4a6f 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFEC8B 100%);
    --gradient-btn: linear-gradient(135deg, #2a6b3f 0%, #3a8c57 100%);
    --footer-gradient: linear-gradient(to bottom, #495057, #212529);
    --mobile-nav-gradient: linear-gradient(135deg, #e9ecef 0%, #343a40 100%);
    --card-gradient: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --card-header-gradient: linear-gradient(135deg, #2c5c7a 0%, #3a7ca5 100%);
    --body-gradient: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    --mobile-nav-bg: linear-gradient(to bottom, rgba(233, 236, 239, 0.98), rgba(206, 212, 218, 0.98));
    --new-primary: linear-gradient(135deg, var(--sea-blue) 0%, var(--dark-sea-blue) 100%);
    --new-secondary: linear-gradient(135deg, #1a3a5f 0%, #2a4a6f 100%);
    --new-accent: var(--gradient-gold);
    --new-card: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    --new-card-header: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    --new-btn: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    --header-height-desktop: 112px;
    --header-height-mobile: 92px;
    --header-height-small: 82px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--body-gradient);
    overflow-x: hidden;
    padding-top: var(--header-height-desktop); /* Use CSS variable */
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--new-btn);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.95rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    will-change: transform;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn:hover::before {
    opacity: 1;
}

.submit-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    width: auto;
    min-width: 120px;
}

/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    will-change: transform;
}

/* Header Styles */
.header-stripe {
    padding: 12px 0;
}

.stripe-one {
    background: var(--new-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stripe-one::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
}

.stripe-two {
    background: var(--new-secondary);
    color: var(--white);
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    min-height: 50px;
}

.stripe-two::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
}

.stripe-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.department-info {
    text-align: center;
    flex: 1;
    margin: 0 10px;
}

.department-info h1 {
    font-size: 1.7rem;
    margin-bottom: 4px;
    font-weight: 700;
    letter-spacing: 0.3px;
    font-family: 'Merriweather', serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.department-info p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.logo-left, .logo-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

/* Image Styles - Increased header logo size with fixed positioning */
.header-logo {
    height: 85px; /* Increased from 65px */
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Navigation Styles - Dark red buttons for PC view */
.main-nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav > ul > li {
    position: relative;
}

.nav-btn {
    padding: 12px 16px;
    display: block;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 4px;
    background: var(--burgundy); /* Changed to dark red */
    color: var(--white);
    text-align: center;
    margin: 0 2px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    border: none;
    will-change: transform;
}

.nav-btn:hover,
.nav-btn.active {
    background-color: var(--dark-burgundy); /* Darker red on hover */
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--burgundy); /* Changed to dark red */
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    will-change: transform, opacity;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 4px 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--white);
    transition: var(--transition);
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--shiny-gold);
    padding-left: 25px;
}

/* Mobile Navigation Toggle - Centered in red stripe */
.mobile-toggle-container {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
}

/* Stylish Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
    will-change: transform, opacity;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation Dropdown - FIXED: Hidden by default */
.mobile-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--mobile-nav-bg);
    backdrop-filter: blur(10px);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: max-height, opacity, visibility;
    transform: translateY(-10px);
}

.mobile-nav-dropdown.active {
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav > li {
    width: 100%;
}

.mobile-nav-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    color: var(--dark-gray);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    -webkit-tap-highlight-color: transparent;
    will-change: transform;
}

.mobile-nav-btn:hover,
.mobile-nav-btn:active,
.mobile-nav-btn.active {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.mobile-dropdown-menu {
    display: none;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 10px 0;
    margin: 10px 0 5px 15px;
    border-left: 3px solid var(--burgundy);
    will-change: transform, opacity;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.mobile-dropdown-menu li {
    margin: 8px 0;
}

.mobile-dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--dark-gray);
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
    -webkit-tap-highlight-color: transparent;
}

.mobile-dropdown-menu li a:hover,
.mobile-dropdown-menu li a:active {
    background-color: rgba(139, 0, 0, 0.1);
    color: var(--burgundy);
    padding-left: 25px;
}

.mobile-dropdown-chevron {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    will-change: transform;
}

.mobile-dropdown.active .mobile-dropdown-chevron {
    transform: rotate(180deg);
}

/* Mobile Navigation Backdrop - FIXED: Hidden by default */
.mobile-nav-backdrop {
    position: fixed;
    top: var(--header-height-desktop);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height-desktop));
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-backdrop.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Executive Team Section - Add scroll margin to account for fixed header */
.executive-team {
    padding: 70px 0;
    background-color: var(--white);
    scroll-margin-top: var(--header-height-desktop); /* Add scroll margin for anchor links */
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.3rem;
    background: var(--new-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    animation: fadeIn 1s ease-in-out;
    font-family: 'Merriweather', serif;
    will-change: transform, opacity;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
}

.executive-description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.executive-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

/* Organizational Chart */
.org-chart {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 40px 20px;
}

.org-level {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

/* Directors Container - New for two directors side by side */
.directors-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    position: relative;
}

.director-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1 auto;
    position: relative;
}

/* Organizational Cards */
.org-card {
    background: var(--new-card);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
    will-change: transform;
}

.org-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.minister-card {
    max-width: 400px;
    border-color: var(--burgundy);
}

.director-card {
    max-width: 320px;
    border-color: var(--sea-blue);
}

.deputy-card {
    max-width: 280px;
    border-color: var(--navy);
}

.card-content {
    padding: 25px;
    text-align: center;
}

.person-image {
    margin-bottom: 20px;
}

.executive-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.person-details h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--navy);
    font-family: 'Merriweather', serif;
}

.position {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sea-blue);
    margin-bottom: 5px;
}

.department {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* Deputy Directors Container */
.deputy-directors-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.deputy-director-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

/* Connectors */
.connector {
    background: var(--sea-blue);
    position: absolute;
}

.vertical-connector {
    width: 3px;
    height: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.horizontal-connector-left,
.horizontal-connector-right,
.horizontal-connector-center {
    width: 50px;
    height: 3px;
    top: -20px;
}

.horizontal-connector-left {
    right: calc(100% + 25px);
}

.horizontal-connector-right {
    left: calc(100% + 25px);
}

.horizontal-connector-center {
    left: 50%;
    transform: translateX(-50%);
}

/* Legend */
.org-legend {
    background: var(--new-card);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.org-legend h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--navy);
    font-family: 'Merriweather', serif;
    text-align: center;
}

.legend-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.minister-color {
    background: var(--burgundy);
}

.director-color {
    background: var(--sea-blue);
}

.deputy-color {
    background: var(--navy);
}

.legend-item span {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

/* Footer Styles */
footer {
    background: var(--footer-gradient);
    color: var(--white);
    padding: 50px 0 15px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    font-size: 1.15rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
    font-family: 'Merriweather', serif;
    color: var(--white);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--shiny-gold);
}

.footer-column ul li {
    margin: 8px 0;
}

.footer-column ul li a {
    opacity: 0.85;
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--white);
}

.footer-column ul a:hover {
    opacity: 1;
    color: var(--shiny-gold);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--white);
    will-change: transform;
}

.social-icons a:hover {
    background-color: var(--shiny-gold);
    color: var(--dark-gray);
    transform: translateY(-3px);
}

.newsletter {
    margin-bottom: 22px;
}

.newsletter h4 {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--white);
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px 0 0 4px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    padding: 10px 14px;
    background-color: var(--shiny-gold);
    color: var(--dark-gray);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.9rem;
}

.newsletter-form button:hover {
    background-color: #e6b800;
}

.footer-logos {
    display: flex;
    gap: 15px;
    margin-top: 18px;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    max-width: 120px;
    height: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    color: var(--white);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .department-info h1 {
        font-size: 1.4rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .directors-container {
        gap: 30px;
    }
    
    .director-card {
        max-width: 280px;
    }
    
    .deputy-directors-container {
        gap: 15px;
    }
    
    .deputy-card {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: var(--header-height-mobile); /* Use CSS variable */
        font-size: 13px;
    }
    
    /* Update scroll margin for mobile */
    .executive-team {
        scroll-margin-top: var(--header-height-mobile);
    }
    
    .mobile-toggle-container {
        display: block;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .stripe-two {
        min-height: 50px;
    }
    
    .stripe-content {
        flex-direction: row;
        text-align: center;
        gap: 5px;
    }
    
    .logo-left, .logo-right {
        display: flex;
        flex: 0 0 auto;
    }
    
    .header-logo {
        height: 60px;
    }
    
    .department-info {
        flex: 1;
        margin: 0 5px;
    }
    
    .department-info h1 {
        font-size: 0.85rem;
        margin-bottom: 2px;
        font-family: 'Merriweather', serif;
    }
    
    .department-info p {
        font-size: 0.65rem;
    }
    
    .executive-team {
        padding: 50px 0;
    }
    
    /* Add extra top padding to section title on mobile to ensure visibility */
    .section-title {
        padding-top: 10px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .executive-description p {
        font-size: 0.9rem;
    }
    
    /* Organizational Chart Mobile Styles */
    .org-chart {
        padding: 20px 10px;
    }
    
    /* Directors container mobile styles */
    .directors-container {
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }
    
    .director-group {
        width: 100%;
    }
    
    .director-card {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .deputy-directors-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .deputy-director-group {
        width: 100%;
    }
    
    .deputy-card {
        max-width: 100%;
    }
    
    .horizontal-connector-left,
    .horizontal-connector-center,
    .horizontal-connector-right {
        display: none;
    }
    
    .vertical-connector {
        height: 20px;
    }
    
    .legend-items {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .executive-img {
        width: 100px;
        height: 100px;
    }
    
    .person-details h3 {
        font-size: 1.2rem;
    }
    
    .position {
        font-size: 1rem;
    }
    
    /* Update mobile nav backdrop top position */
    .mobile-nav-backdrop {
        top: var(--header-height-mobile);
        height: calc(100vh - var(--header-height-mobile));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 4px 4px 0 0;
    }
    
    .newsletter-form button {
        border-radius: 0 0 4px 4px;
    }
    
    .footer-logos {
        justify-content: center;
    }
    
    .footer-logo-img {
        max-width: 100px;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: var(--header-height-small);
        font-size: 12px;
    }
    
    /* Update scroll margin for small mobile */
    .executive-team {
        scroll-margin-top: var(--header-height-small);
    }
    
    .department-info h1 {
        font-size: 0.75rem;
    }
    
    .department-info p {
        font-size: 0.6rem;
    }
    
    .section-title {
        padding-top: 15px; /* Add more padding on very small screens */
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .section-title p {
        font-size: 0.9rem;
    }
    
    .executive-team {
        padding: 40px 0;
    }
    
    .org-card {
        margin: 0 10px;
    }
    
    .executive-img {
        width: 80px;
        height: 80px;
    }
    
    .person-details h3 {
        font-size: 1.1rem;
    }
    
    .position {
        font-size: 0.9rem;
    }
    
    .header-logo {
        height: 50px;
    }
    
    .stripe-content {
        gap: 3px;
    }
    
    /* Update mobile nav backdrop top position for small mobile */
    .mobile-nav-backdrop {
        top: var(--header-height-small);
        height: calc(100vh - var(--header-height-small));
    }
    
    .footer-column h3 {
        font-size: 1rem;
    }
    
    .footer-column ul li a {
        font-size: 0.8rem;
    }
    
    .social-icons a {
        width: 34px;
        height: 34px;
    }
    
    .newsletter h4 {
        font-size: 0.85rem;
    }
    
    .mobile-nav-btn {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .mobile-dropdown-menu li a {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

/* Accessibility Features */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --sea-blue: #000080;
        --dark-sea-blue: #000066;
        --burgundy: #800000;
        --dark-burgundy: #600000;
        --shiny-gold: #ffd700;
        --light-gold: #ffcc00;
        --light-gray: #ffffff;
        --dark-gray: #000000;
        --white: #ffffff;
    }
    
    .btn {
        border: 2px solid var(--dark-gray);
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--shiny-gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header-stripe,
    .main-nav,
    .hamburger-menu,
    .mobile-nav-dropdown,
    .social-icons,
    .newsletter,
    .footer-logos {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
        padding-top: 0;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .executive-team {
        padding: 20px 0;
    }
    
    .org-card {
        break-inside: avoid;
        box-shadow: none;
        border: 2px solid #000;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    footer {
        background: #fff;
        color: #000;
        padding: 20px 0;
    }
    
    .footer-bottom {
        border-top: 1px solid #000;
    }
}