/* 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%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--body-gradient);
    overflow-x: hidden;
    /* REMOVED padding-top - content will start below header naturally */
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    font-size: 14px; /* Reduced base font size for consistency */
}

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 20px; /* Reduced padding */
    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.9rem; /* Reduced font size */
    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;
}

/* Fixed Header - UPDATED to prevent content overlap */
.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: 10px 0; /* Reduced padding */
}

.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: 45px; /* Reduced height */
}

.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.5rem; /* Reduced font size */
    margin-bottom: 3px; /* Reduced margin */
    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.8rem; /* Reduced font size */
    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: 75px; /* Reduced size */
    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: 10px 14px; /* Reduced padding */
    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.9rem; /* Reduced font size */
    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: 200px; /* Reduced width */
    box-shadow: var(--shadow);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 6px 0; /* Reduced padding */
    display: flex;
    flex-direction: column;
    will-change: transform, opacity;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 3px 0; /* Reduced margin */
}

.dropdown-menu li a {
    display: block;
    padding: 8px 16px; /* Reduced padding */
    color: var(--white);
    transition: var(--transition);
    font-size: 0.85rem; /* Reduced font size */
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--shiny-gold);
    padding-left: 20px; /* Reduced padding */
}

/* 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: 28px; /* Reduced size */
    height: 20px; /* Reduced size */
    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(8px) rotate(45deg); /* Adjusted for smaller size */
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg); /* Adjusted for smaller size */
}

/* 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: 18px; /* Reduced padding */
    display: flex;
    flex-direction: column;
    gap: 12px; /* Reduced gap */
}

.mobile-nav > li {
    width: 100%;
}

.mobile-nav-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px; /* Reduced padding */
    font-size: 0.95rem; /* Reduced font size */
    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: 8px 0; /* Reduced padding */
    margin: 8px 0 5px 12px; /* Reduced margin */
    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: 6px 0; /* Reduced margin */
}

.mobile-dropdown-menu li a {
    display: block;
    padding: 10px 16px; /* Reduced padding */
    color: var(--dark-gray);
    transition: var(--transition);
    font-size: 0.9rem; /* Reduced font size */
    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: 20px; /* Reduced padding */
}

.mobile-dropdown-chevron {
    transition: transform 0.3s ease;
    font-size: 0.85rem; /* Reduced font size */
    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: 0; /* CHANGED: Start from top of viewport */
    left: 0;
    width: 100%;
    height: 100vh; /* CHANGED: Full viewport height */
    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;
}

/* Page Header - FIXED: Proper spacing below fixed header */
.page-header {
    background: var(--new-primary);
    color: var(--white);
    padding: 70px 0 50px; /* Reduced padding */
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0; /* Ensure no negative margins */
}

.page-header::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;
}

.page-header-content h1 {
    font-size: 2.5rem; /* Reduced font size */
    margin-bottom: 12px; /* Reduced margin */
    font-family: 'Merriweather', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-in-out;
}

.page-header-content p {
    font-size: 1.1rem; /* Reduced font size */
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Core Issues Section */
.core-issues {
    padding: 60px 0; /* Reduced padding */
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 40px; /* Reduced margin */
}

.section-title h2 {
    font-size: 2.2rem; /* Reduced font size */
    background: var(--new-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px; /* Reduced margin */
    font-family: 'Merriweather', serif;
    animation: fadeIn 1s ease-in-out;
}

.section-title p {
    font-size: 1rem; /* Reduced font size */
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Quick Navigation */
.quick-nav {
    background: var(--new-card);
    border-radius: 10px; /* Reduced radius */
    padding: 20px; /* Reduced padding */
    margin-bottom: 35px; /* Reduced margin */
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
}

.quick-nav-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* Reduced gap */
    justify-content: center;
}

.quick-nav-btn {
    padding: 8px 16px; /* Reduced padding for smaller buttons */
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--sea-blue);
    border-radius: 20px; /* Reduced radius */
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    flex: 1;
    min-width: 120px; /* Reduced min-width */
    max-width: 150px; /* Reduced max-width */
    font-size: 0.85rem; /* Reduced font size */
}

.quick-nav-btn:hover {
    background: var(--sea-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 190, 0.3);
}

/* Content Sections */
.content-section {
    margin-bottom: 50px; /* Reduced margin */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.section-header {
    background: var(--new-card-header);
    color: var(--white);
    padding: 22px 25px; /* Reduced padding */
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
}

.section-header h3 {
    font-size: 1.4rem; /* Reduced font size */
    margin-bottom: 6px; /* Reduced margin */
    font-family: 'Merriweather', serif;
}

.section-header p {
    opacity: 0.9;
    font-size: 0.95rem; /* Reduced font size */
    margin: 0;
}

/* Content Cards */
.content-card {
    background: var(--new-card);
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 25px; /* Reduced margin */
    border: 1px solid #e9ecef;
    border-top: none;
}

.card-header {
    background: var(--new-primary);
    color: var(--white);
    padding: 18px 25px; /* Reduced padding */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h4 {
    font-size: 1.2rem; /* Reduced font size */
    font-family: 'Merriweather', serif;
    display: flex;
    align-items: center;
    gap: 10px; /* Reduced gap */
}

.card-content {
    padding: 25px; /* Reduced padding */
}

.card-content p {
    margin-bottom: 18px; /* Reduced margin */
    line-height: 1.6;
    color: #555;
    font-size: 0.95rem; /* Reduced font size */
}

.card-content p:last-child {
    margin-bottom: 0;
}

/* Pillars Grid - CHANGED to single column */
.pillars-grid {
    display: flex;
    flex-direction: column; /* Single column layout */
    gap: 20px; /* Reduced gap */
    margin: 25px 0; /* Reduced margin */
}

.pillar-card {
    background: var(--white);
    border-radius: 8px;
    padding: 22px; /* Reduced padding */
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e9ecef;
    width: 100%; /* Full width for single column */
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 12px; /* Reduced gap */
    margin-bottom: 12px; /* Reduced margin */
}

.pillar-icon {
    width: 45px; /* Reduced size */
    height: 45px; /* Reduced size */
    background: var(--new-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem; /* Reduced font size */
}

.pillar-header h5 {
    font-size: 1.1rem; /* Reduced font size */
    color: var(--navy);
    font-family: 'Merriweather', serif;
    margin: 0;
}

.pillar-content p {
    margin: 0;
    line-height: 1.6;
    color: #555;
    font-size: 0.95rem; /* Reduced font size */
}

/* Document Actions */
.document-actions {
    display: flex;
    gap: 10px; /* Reduced gap */
    flex-wrap: wrap;
    margin-top: 18px; /* Reduced margin */
}

.doc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px; /* Reduced gap */
    padding: 8px 16px; /* Reduced padding */
    background: var(--white);
    color: var(--sea-blue);
    border: 2px solid var(--sea-blue);
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.85rem; /* Reduced font size */
}

.doc-btn:hover {
    background: var(--sea-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 190, 0.3);
}

.download-btn {
    background: var(--sea-blue);
    color: var(--white);
    border-color: var(--sea-blue);
}

.download-btn:hover {
    background: var(--dark-sea-blue);
    border-color: var(--dark-sea-blue);
}

/* Phase Sections */
.phase-section {
    margin: 35px 0; /* Reduced margin */
}

.phase-section h4 {
    font-size: 1.3rem; /* Reduced font size */
    color: var(--navy);
    margin-bottom: 20px; /* Reduced margin */
    font-family: 'Merriweather', serif;
    padding-bottom: 8px; /* Reduced padding */
    border-bottom: 2px solid var(--sea-blue);
}

/* Consultation Timeline */
.consultation-timeline {
    position: relative;
    padding-left: 25px; /* Reduced padding */
    margin: 25px 0; /* Reduced margin */
}

.consultation-timeline::before {
    content: '';
    position: absolute;
    left: 12px; /* Adjusted position */
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--sea-blue);
    border-radius: 1px;
}

.consultation-item {
    position: relative;
    margin-bottom: 35px; /* Reduced margin */
}

.consultation-marker {
    position: absolute;
    left: -25px; /* Adjusted position */
    top: 5px;
    width: 10px; /* Reduced size */
    height: 10px; /* Reduced size */
    background: var(--sea-blue);
    border-radius: 50%;
    border: 2px solid var(--white); /* Reduced border */
    box-shadow: 0 0 0 2px var(--sea-blue);
}

.consultation-content {
    background: var(--white);
    padding: 22px; /* Reduced padding */
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
}

.consultation-content h5 {
    font-size: 1.1rem; /* Reduced font size */
    color: var(--navy);
    margin-bottom: 12px; /* Reduced margin */
    font-family: 'Merriweather', serif;
}

.consultation-content p {
    margin-bottom: 12px; /* Reduced margin */
    line-height: 1.6;
    color: #555;
    font-size: 0.95rem; /* Reduced font size */
}

.consultation-content ul {
    margin: 12px 0; /* Reduced margin */
    padding-left: 18px; /* Reduced padding */
}

.consultation-content li {
    margin-bottom: 6px; /* Reduced margin */
    line-height: 1.5;
    color: #555;
    list-style-type: disc;
    font-size: 0.95rem; /* Reduced font size */
}

/* Sub Sections */
.sub-section {
    margin: 25px 0; /* Reduced margin */
    padding: 22px; /* Reduced padding */
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--sea-blue);
    box-shadow: var(--shadow);
}

.sub-section h4 {
    font-size: 1.1rem; /* Reduced font size */
    color: var(--navy);
    margin-bottom: 12px; /* Reduced margin */
    font-family: 'Merriweather', serif;
}

/* Critical Questions */
.critical-questions {
    margin: 25px 0; /* Reduced margin */
}

.critical-questions h4 {
    font-size: 1.2rem; /* Reduced font size */
    color: var(--navy);
    margin-bottom: 20px; /* Reduced margin */
    font-family: 'Merriweather', serif;
    text-align: center;
}

.question-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Reduced min-width */
    gap: 20px; /* Reduced gap */
}

.question-card {
    background: var(--white);
    padding: 22px; /* Reduced padding */
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.question-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.question-icon {
    width: 45px; /* Reduced size */
    height: 45px; /* Reduced size */
    background: var(--new-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem; /* Reduced font size */
    margin-bottom: 12px; /* Reduced margin */
}

.question-card h5 {
    font-size: 1rem; /* Reduced font size */
    color: var(--navy);
    margin-bottom: 12px; /* Reduced margin */
    font-family: 'Merriweather', serif;
    line-height: 1.4;
}

.question-card p {
    margin-bottom: 10px; /* Reduced margin */
    font-weight: 600;
    color: var(--sea-blue);
    font-size: 0.95rem; /* Reduced font size */
}

.question-card ul {
    margin: 10px 0; /* Reduced margin */
    padding-left: 18px; /* Reduced padding */
}

.question-card li {
    margin-bottom: 5px; /* Reduced margin */
    line-height: 1.5;
    color: #555;
    list-style-type: disc;
    font-size: 0.95rem; /* Reduced font size */
}

/* Awareness Platforms */
.awareness-platforms {
    margin: 25px 0; /* Reduced margin */
}

.awareness-platforms h4 {
    font-size: 1.2rem; /* Reduced font size */
    color: var(--navy);
    margin-bottom: 20px; /* Reduced margin */
    font-family: 'Merriweather', serif;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns per row */
    gap: 12px; /* Reduced gap */
}

.social-platform {
    display: flex;
    align-items: center;
    gap: 12px; /* Reduced gap */
    padding: 18px; /* Reduced padding */
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
    transition: var(--transition);
    color: var(--dark-gray);
    text-decoration: none;
}

.social-platform:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: var(--sea-blue);
}

.social-platform i {
    font-size: 1.3rem; /* Reduced font size */
    width: 25px; /* Reduced width */
    text-align: center;
}

.social-platform span {
    font-weight: 500;
    line-height: 1.4;
    font-size: 0.9rem; /* Reduced font size */
}

/* Funding Highlight */
.funding-highlight {
    background: var(--light-gold);
    padding: 22px; /* Reduced padding */
    border-radius: 8px;
    margin: 20px 0; /* Reduced margin */
    border: 2px solid var(--shiny-gold);
    text-align: center;
}

.funding-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Reduced gap */
}

.funding-amount i {
    font-size: 2.5rem; /* Reduced font size */
    color: var(--dark-gray);
}

.amount {
    font-size: 2.2rem; /* Reduced font size */
    font-weight: 700;
    color: var(--dark-gray);
    display: block;
    font-family: 'Merriweather', serif;
}

.label {
    font-size: 1rem; /* Reduced font size */
    color: var(--dark-gray);
    font-weight: 500;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Reduced min-width */
    gap: 15px; /* Reduced gap */
    margin: 25px 0; /* Reduced margin */
}

.project-card {
    background: var(--white);
    padding: 18px; /* Reduced padding */
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
    transition: var(--transition);
    text-align: center;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.project-card h5 {
    font-size: 1rem; /* Reduced font size */
    color: var(--navy);
    margin-bottom: 10px; /* Reduced margin */
    font-family: 'Merriweather', serif;
}

.project-amount {
    font-size: 1.3rem; /* Reduced font size */
    font-weight: 700;
    color: var(--sea-blue);
    margin-bottom: 8px; /* Reduced margin */
    font-family: 'Merriweather', serif;
}

.project-card p {
    color: #666;
    font-size: 0.85rem; /* Reduced font size */
    margin: 0;
    line-height: 1.5;
}

.commitment-note {
    font-style: italic;
    text-align: center;
    color: var(--sea-blue);
    font-weight: 500;
    margin-top: 20px; /* Reduced margin */
    padding-top: 12px; /* Reduced padding */
    border-top: 1px solid #e9ecef;
    font-size: 0.95rem; /* Reduced font size */
}

/* Footer Styles */
footer {
    background: var(--footer-gradient);
    color: var(--white);
    padding: 40px 0 12px; /* Reduced padding */
    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: 30px; /* Reduced gap */
    margin-bottom: 30px; /* Reduced margin */
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    font-size: 1.1rem; /* Reduced font size */
    margin-bottom: 15px; /* Reduced margin */
    position: relative;
    padding-bottom: 6px; /* Reduced padding */
    font-family: 'Merriweather', serif;
    color: var(--white);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px; /* Reduced width */
    height: 2px;
    background-color: var(--shiny-gold);
}

.footer-column ul li {
    margin: 6px 0; /* Reduced margin */
}

.footer-column ul li a {
    opacity: 0.85;
    transition: var(--transition);
    font-size: 0.85rem; /* Reduced font size */
    color: var(--white);
}

.footer-column ul a:hover {
    opacity: 1;
    color: var(--shiny-gold);
    padding-left: 4px; /* Reduced padding */
}

.social-icons {
    display: flex;
    gap: 10px; /* Reduced gap */
    margin-bottom: 18px; /* Reduced margin */
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px; /* Reduced size */
    height: 35px; /* Reduced size */
    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: 18px; /* Reduced margin */
}

.newsletter h4 {
    margin-bottom: 10px; /* Reduced margin */
    font-size: 0.9rem; /* Reduced font size */
    color: var(--white);
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 8px; /* Reduced padding */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px 0 0 4px;
    font-size: 0.85rem; /* Reduced font size */
    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: 8px 12px; /* Reduced padding */
    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.85rem; /* Reduced font size */
}

.newsletter-form button:hover {
    background-color: #e6b800;
}

.footer-logos {
    display: flex;
    gap: 12px; /* Reduced gap */
    margin-top: 15px; /* Reduced margin */
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    max-width: 100px; /* Reduced size */
    height: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px; /* Reduced padding */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    font-size: 0.8rem; /* Reduced font size */
    color: var(--white);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    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.3rem; /* Reduced font size */
    }
    
    .page-header-content h1 {
        font-size: 2.2rem; /* Reduced font size */
    }
    
    .social-links-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns on tablet */
    }
}

@media (max-width: 768px) {
    /* REMOVED body padding-top adjustment for mobile */
    
    .mobile-toggle-container {
        display: block;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .stripe-two {
        min-height: 45px; /* Reduced height */
    }
    
    .stripe-content {
        flex-direction: row;
        text-align: center;
        gap: 5px;
    }
    
    .logo-left, .logo-right {
        display: flex;
        flex: 0 0 auto;
    }
    
    .header-logo {
        height: 55px; /* Reduced size */
    }
    
    .department-info {
        flex: 1;
        margin: 0 5px;
    }
    
    .department-info h1 {
        font-size: 0.8rem; /* Reduced for mobile */
        margin-bottom: 2px;
        font-family: 'Merriweather', serif;
    }
    
    .department-info p {
        font-size: 0.6rem; /* Reduced for mobile */
    }
    
    /* FIXED: Page header mobile spacing */
    .page-header {
        padding: 90px 0 35px; /* Adjusted padding */
    }
    
    .page-header-content h1 {
        font-size: 1.8rem; /* Reduced for mobile */
    }
    
    .page-header-content p {
        font-size: 0.95rem; /* Reduced for mobile */
    }
    
    .core-issues {
        padding: 45px 0; /* Reduced padding */
    }
    
    .section-title h2 {
        font-size: 1.6rem; /* Reduced for mobile */
    }
    
    .section-title p {
        font-size: 0.85rem; /* Reduced for mobile */
    }
    
    .quick-nav-container {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-nav-btn {
        max-width: 100%;
        width: 100%;
        font-size: 0.8rem; /* Reduced font size */
    }
    
    .section-header h3 {
        font-size: 1.1rem; /* Reduced for mobile */
    }
    
    .card-header h4 {
        font-size: 1rem; /* Reduced for mobile */
    }
    
    .card-content {
        padding: 18px; /* Reduced padding */
    }
    
    .pillars-grid {
        gap: 15px; /* Reduced gap */
    }
    
    .pillar-card {
        padding: 18px; /* Reduced padding */
    }
    
    .consultation-content {
        padding: 18px; /* Reduced padding */
    }
    
    /* MOBILE: Print and share buttons in one row, download in second row */
    .document-actions {
        flex-direction: column;
    }
    
    .document-actions .doc-btn:not(.download-btn) {
        display: flex;
        justify-content: center;
    }
    
    .document-actions .download-btn {
        display: flex;
        justify-content: center;
        margin-top: 8px;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .funding-amount {
        flex-direction: column;
        gap: 12px; /* Reduced gap */
    }
    
    .amount {
        font-size: 1.8rem; /* Reduced for mobile */
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px; /* Reduced gap */
    }
    
    .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: 80px; /* Reduced size */
    }
    
    .mobile-nav-backdrop {
        top: 0; /* Start from top of viewport */
        height: 100vh; /* Full viewport height */
    }
}

@media (max-width: 576px) {
    /* REMOVED body padding-top adjustment for small mobile */
    
    .department-info h1 {
        font-size: 0.7rem; /* Further reduced */
    }
    
    .department-info p {
        font-size: 0.55rem; /* Further reduced */
    }
    
    /* FIXED: Page header small mobile spacing */
    .page-header {
        padding: 80px 0 25px; /* Adjusted padding */
    }
    
    .page-header-content h1 {
        font-size: 1.5rem; /* Further reduced */
    }
    
    .page-header-content p {
        font-size: 0.85rem; /* Further reduced */
    }
    
    .core-issues {
        padding: 35px 0; /* Reduced padding */
    }
    
    .section-title h2 {
        font-size: 1.4rem; /* Further reduced */
    }
    
    .section-title p {
        font-size: 0.8rem; /* Further reduced */
    }
    
    .section-header {
        padding: 18px; /* Reduced padding */
    }
    
    .section-header h3 {
        font-size: 1rem; /* Further reduced */
    }
    
    .card-header {
        padding: 15px 18px; /* Reduced padding */
    }
    
    .pillar-card {
        padding: 15px; /* Reduced padding */
    }
    
    .consultation-timeline {
        padding-left: 18px; /* Reduced padding */
    }
    
    .consultation-marker {
        left: -18px; /* Adjusted position */
    }
    
    .header-logo {
        height: 45px; /* Reduced size */
    }
    
    .stripe-content {
        gap: 3px;
    }
    
    .footer-column h3 {
        font-size: 0.95rem; /* Further reduced */
    }
    
    .footer-column ul li a {
        font-size: 0.8rem; /* Further reduced */
    }
    
    .social-icons a {
        width: 32px; /* Reduced size */
        height: 32px; /* Reduced size */
    }
    
    .newsletter h4 {
        font-size: 0.8rem; /* Further reduced */
    }
    
    .mobile-nav-btn {
        padding: 10px;
        font-size: 0.8rem; /* Further reduced */
    }
    
    .mobile-dropdown-menu li a {
        padding: 8px 14px; /* Reduced padding */
        font-size: 0.75rem; /* Further reduced */
    }
    
    .question-cards {
        grid-template-columns: 1fr;
    }
}

/* 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);
    }
    
    .doc-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,
    .quick-nav,
    .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;
    }
    
    .page-header {
        background: #fff !important;
        color: #000 !important;
        padding: 20px 0;
    }
    
    .content-card {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .pillar-card {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .consultation-content {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .question-card {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .project-card {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    footer {
        background: #fff;
        color: #000;
        padding: 20px 0;
    }
    
    .footer-bottom {
        border-top: 1px solid #000;
    }
}