/* 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 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 119, 190, 0.12);
    --transition: all 0.3s ease;
    --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, #2c3e50, #1a2634);
    --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, #f0f2f5 0%, #e6ecf5 100%);
    --mobile-nav-bg: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 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: #ffffff;
    --new-card-header: linear-gradient(135deg, #1a3a5f 0%, #2a4a6f 100%);
    --new-btn: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    
    /* Danger and success colors for notifications */
    --danger-color: #dc3545;
    --success-color: #28a745;
    --info-color: #17a2b8;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--body-gradient);
    overflow-x: hidden;
    padding-top: 112px;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
}

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: 12px 24px;
    background: var(--sea-blue);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0, 119, 190, 0.2);
}

.btn:hover {
    background: var(--dark-sea-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 119, 190, 0.3);
}

/* 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;
    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);
    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);
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--burgundy);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    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.9);
    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: var(--white);
    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.7);
    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: 112px;
    left: 0;
    width: 100%;
    height: calc(100vh - 112px);
    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: Mobile spacing issue */
.page-header {
    background: var(--new-primary);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.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: 3rem;
    margin-bottom: 15px;
    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.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Press Releases Section - UPDATED */
.press-release-section {
    padding: 70px 0;
    background: transparent;
}

/* Press Intro - UPDATED */
.press-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    position: relative;
}

.press-intro::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--shiny-gold);
    border-radius: 2px;
}

.press-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5a6a;
    background: rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

/* Quick Navigation - UPDATED for mobile single row */
.quick-nav {
    margin-bottom: 40px;
    width: 100%;
    overflow: visible;
}

.quick-nav-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.quick-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 40px;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
    will-change: transform;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    min-width: 160px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.quick-nav-btn:hover {
    background: var(--sea-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 190, 0.25);
}

/* Press Filters - UPDATED for mobile single row */
.press-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
    width: 100%;
    overflow: visible;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark-gray);
    font-family: 'Poppins', sans-serif;
    will-change: transform;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

.filter-btn:hover {
    transform: translateY(-2px);
    border-color: var(--sea-blue);
    color: var(--sea-blue);
    box-shadow: 0 8px 25px rgba(0, 119, 190, 0.15);
}

.filter-btn.active {
    background: var(--sea-blue);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 119, 190, 0.3);
}

/* Press Grid - UPDATED */
.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Press Card - COMPLETELY RESTYLED */
.press-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.press-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 119, 190, 0.15);
    border-color: rgba(0, 119, 190, 0.1);
}

/* Press Header - New design */
.press-header {
    background: var(--new-card-header);
    padding: 20px 25px;
    position: relative;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.press-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    opacity: 0.9;
}

.press-number {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Press Content */
.press-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Profile Section - Redesigned */
.press-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 119, 190, 0.1);
}

.profile-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 8px 20px rgba(0, 119, 190, 0.2);
    flex-shrink: 0;
    background: var(--light-gray);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.press-card:hover .profile-img {
    transform: scale(1.05);
}

.profile-info {
    flex: 1;
}

.profile-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--navy);
    font-family: 'Merriweather', serif;
    line-height: 1.3;
}

.profile-title {
    font-size: 0.85rem;
    color: var(--sea-blue);
    font-weight: 500;
    margin-bottom: 4px;
    opacity: 0.9;
}

.release-date {
    font-size: 0.8rem;
    color: #6c7a8a;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.release-date i {
    color: var(--sea-blue);
    font-size: 0.75rem;
}

/* Press Summary */
.press-summary {
    flex: 1;
    margin-bottom: 20px;
}

.press-summary h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy);
    font-family: 'Merriweather', serif;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.press-summary p {
    color: #5a6a7a;
    line-height: 1.7;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Press Actions - Modern button design with transparency */
.press-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.press-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    background: rgba(248, 249, 250, 0.8);
    color: var(--dark-gray);
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex: 1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.press-btn i {
    font-size: 0.9rem;
}

.press-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.press-btn.view-full {
    background: rgba(0, 119, 190, 0.9);
    color: var(--white);
    border: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.press-btn.view-full:hover {
    background: rgba(0, 90, 135, 0.95);
    box-shadow: 0 8px 20px rgba(0, 119, 190, 0.3);
}

.press-btn.download {
    background: rgba(26, 58, 95, 0.9);
    color: var(--white);
    border: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.press-btn.download:hover {
    background: rgba(42, 74, 111, 0.95);
}

.press-btn.share-btn:hover,
.press-btn.print-btn:hover {
    background: rgba(0, 119, 190, 0.85);
    color: var(--white);
    border-color: transparent;
}

/* Statistics Section - FIXED text wrapping */
.press-stats {
    background: var(--white);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    margin-top: 60px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    width: 100%;
    overflow: hidden;
}

.press-stats h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--navy);
    font-family: 'Merriweather', serif;
    position: relative;
    display: inline-block;
}

.press-stats h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--shiny-gold);
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    min-height: 160px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 119, 190, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--sea-blue);
    margin-bottom: 10px;
    font-family: 'Merriweather', serif;
    line-height: 1.2;
    width: 100%;
    text-align: center;
}

.stat-label {
    font-size: 1rem;
    color: #5a6a7a;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.4;
}

/* Loading Articles - UPDATED */
.loading-articles {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.loading-articles i {
    font-size: 3rem;
    color: var(--sea-blue);
    margin-bottom: 20px;
}

.loading-articles p {
    color: #6c7a8a;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Empty State - UPDATED */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.empty-state i {
    font-size: 4rem;
    color: var(--sea-blue);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-family: 'Merriweather', serif;
}

.empty-state p {
    color: #6c7a8a;
    margin-bottom: 25px;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background: var(--white);
    color: var(--sea-blue);
    border: 2px solid var(--sea-blue);
    font-size: 1rem;
    padding: 14px 40px;
    border-radius: 40px;
    box-shadow: 0 8px 20px rgba(0, 119, 190, 0.1);
}

.load-more-btn:hover {
    background: var(--sea-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 119, 190, 0.2);
}

/* Press Modal - UPDATED */
.press-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
}

.press-modal-content {
    background: var(--white);
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 24px;
    position: relative;
    padding: 40px;
    animation: slideUp 0.4s ease;
}

.press-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    z-index: 2;
}

.press-modal-close:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: rotate(90deg);
}

.press-modal-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.press-modal-header h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-family: 'Merriweather', serif;
    line-height: 1.3;
}

.press-modal-category {
    color: var(--sea-blue);
    font-weight: 500;
    font-size: 1rem;
}

.press-modal-person {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 16px;
}

.press-modal-person-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 8px 20px rgba(0, 119, 190, 0.2);
}

.press-modal-person-info h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 5px;
    font-family: 'Merriweather', serif;
}

.press-modal-person-info p {
    color: var(--sea-blue);
    font-weight: 500;
}

.press-modal-body {
    line-height: 1.8;
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.press-modal-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: var(--sea-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 40px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 119, 190, 0.3);
}

.btn-primary:hover {
    background: var(--dark-sea-blue);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 119, 190, 0.4);
}

/* Notification Container */
#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}

.notification {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    animation: slideIn 0.3s ease;
    border-left: 4px solid;
}

.notification-success {
    border-left-color: var(--success-color);
}

.notification-error {
    border-left-color: var(--danger-color);
}

.notification-info {
    border-left-color: var(--info-color);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    font-size: 1.2rem;
}

.notification-success i {
    color: var(--success-color);
}

.notification-error i {
    color: var(--danger-color);
}

.notification-info i {
    color: var(--info-color);
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
}

.notification-close:hover {
    color: #333;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Footer Styles */
footer {
    background: var(--footer-gradient);
    color: var(--white);
    padding: 60px 0 20px;
    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.03) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    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: 10px 0;
}

.footer-column ul li a {
    opacity: 0.8;
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--white);
    display: inline-block;
}

.footer-column ul a:hover {
    opacity: 1;
    color: var(--shiny-gold);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--white);
    will-change: transform;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background-color: var(--shiny-gold);
    color: var(--dark-gray);
    transform: translateY(-3px);
}

.newsletter {
    margin-bottom: 25px;
}

.newsletter h4 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--white);
}

.newsletter-form {
    display: flex;
    border-radius: 40px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    font-size: 0.9rem;
    background: transparent;
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: var(--shiny-gold);
    color: var(--dark-gray);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.newsletter-form button:hover {
    background-color: #e6b800;
}

.footer-logos {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo-img {
    max-width: 100px;
    height: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* 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);
    }
}

/* ===== MOBILE RESPONSIVE STYLES - OPTIMIZED FOR SINGLE ROW BUTTONS ===== */
@media (max-width: 768px) {
    body {
        padding-top: 112px;
        font-size: 13px;
    }
    
    .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;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .page-header-content p {
        font-size: 1rem;
    }
    
    .press-release-section {
        padding: 40px 0;
    }
    
    .press-intro p {
        font-size: 0.9rem;
        padding: 20px;
    }
    
    /* === QUICK NAVIGATION - SINGLE ROW WITH HORIZONTAL SCROLL === */
    .quick-nav {
        margin-bottom: 25px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;
    }
    
    .quick-nav::-webkit-scrollbar {
        display: none;
    }
    
    .quick-nav-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        padding: 0 0 10px 0 !important;
        width: max-content !important;
        min-width: 100% !important;
    }
    
    .quick-nav-btn {
        min-width: auto !important;
        padding: 8px 14px !important;
        font-size: 0.8rem !important;
        white-space: nowrap !important;
        flex: 0 0 auto !important;
    }
    
    /* === PRESS FILTERS - SINGLE ROW WITH HORIZONTAL SCROLL === */
    .press-filters {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        gap: 6px !important;
        margin-bottom: 30px !important;
        padding: 0 0 10px 0 !important;
        width: 100% !important;
    }
    
    .press-filters::-webkit-scrollbar {
        display: none !important;
    }
    
    .filter-btn {
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
        white-space: nowrap !important;
        flex: 0 0 auto !important;
        min-width: auto !important;
        width: auto !important;
    }
    
    /* === STATISTICS SECTION - FIXED TEXT WRAPPING === */
    .press-stats {
        padding: 30px 15px !important;
        overflow: hidden !important;
    }
    
    .press-stats h2 {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
    }
    
    .stats-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        gap: 10px !important;
        padding: 0 0 15px 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .stats-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .stat-item {
        flex: 0 0 auto !important;
        width: 140px !important;
        padding: 15px 10px !important;
        margin: 0 !important;
        min-height: 120px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .stat-number {
        font-size: 1.6rem !important;
        margin-bottom: 8px !important;
        line-height: 1.2 !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .stat-label {
        font-size: 0.7rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        line-height: 1.3 !important;
        text-align: center !important;
        padding: 0 2px !important;
    }
    
    /* Press Grid */
    .press-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .press-content {
        padding: 18px;
    }
    
    .press-profile {
        gap: 12px;
    }
    
    .profile-image {
        width: 50px;
        height: 50px;
    }
    
    .profile-info h4 {
        font-size: 0.95rem;
    }
    
    .profile-title {
        font-size: 0.75rem;
    }
    
    .release-date {
        font-size: 0.7rem;
    }
    
    .press-summary h4 {
        font-size: 1rem;
    }
    
    .press-summary p {
        font-size: 0.85rem;
    }
    
    .press-actions {
        gap: 6px;
    }
    
    .press-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .press-btn i {
        font-size: 0.8rem;
    }
    
    .press-header {
        padding: 15px 18px;
    }
    
    .press-header h3 {
        font-size: 0.9rem;
    }
    
    .press-number {
        padding: 4px 10px;
        font-size: 0.7rem;
    }
    
    /* Modal mobile adjustments */
    .press-modal-content {
        padding: 25px 20px;
    }
    
    .press-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .press-modal-person {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .press-modal-person-image {
        width: 70px;
        height: 70px;
    }
    
    .press-modal-body {
        font-size: 0.9rem;
    }
    
    .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;
    }
    
    .footer-logos {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .footer-logo-img {
        max-width: 70px;
    }
    
    .mobile-nav-backdrop {
        top: 112px;
        height: calc(100vh - 112px);
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 102px;
        font-size: 12px;
    }
    
    .department-info h1 {
        font-size: 0.75rem;
    }
    
    .department-info p {
        font-size: 0.6rem;
    }
    
    .page-header {
        padding: 85px 0 25px;
    }
    
    .page-header-content h1 {
        font-size: 1.5rem;
    }
    
    .page-header-content p {
        font-size: 0.85rem;
    }
    
    .press-release-section {
        padding: 30px 0;
    }
    
    /* Even smaller buttons for small mobile */
    .quick-nav-btn {
        padding: 6px 12px !important;
        font-size: 0.7rem !important;
    }
    
    .filter-btn {
        padding: 5px 10px !important;
        font-size: 0.65rem !important;
    }
    
    .stat-item {
        width: 120px !important;
        padding: 12px 8px !important;
        min-height: 100px !important;
    }
    
    .stat-number {
        font-size: 1.4rem !important;
        margin-bottom: 5px !important;
    }
    
    .stat-label {
        font-size: 0.6rem !important;
        line-height: 1.2 !important;
    }
    
    .header-logo {
        height: 45px;
    }
    
    .stripe-content {
        gap: 2px;
    }
    
    .press-header h3 {
        font-size: 0.8rem;
    }
    
    .press-number {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
    
    .profile-image {
        width: 45px;
        height: 45px;
    }
    
    .profile-info h4 {
        font-size: 0.85rem;
    }
    
    .profile-title {
        font-size: 0.7rem;
    }
    
    .release-date {
        font-size: 0.65rem;
    }
    
    .press-summary h4 {
        font-size: 0.95rem;
    }
    
    .press-summary p {
        font-size: 0.8rem;
    }
    
    .press-actions {
        flex-direction: column;
    }
    
    .press-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-column h3 {
        font-size: 0.95rem;
    }
    
    .footer-column ul li a {
        font-size: 0.8rem;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .newsletter h4 {
        font-size: 0.85rem;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        padding: 10px;
        font-size: 0.8rem;
    }
    
    .mobile-nav-btn {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .mobile-dropdown-menu li a {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* 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, .press-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,
    .press-actions,
    .quick-nav,
    .load-more-container {
        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;
    }
    
    .press-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
        margin-bottom: 20px;
        page-break-inside: avoid;
    }
    
    .press-stats {
        box-shadow: none;
        border: 1px solid #000;
        break-inside: avoid;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    footer {
        background: #fff;
        color: #000;
        padding: 20px 0;
    }
    
    .footer-bottom {
        border-top: 1px solid #000;
    }
}