/* ================================================================
   NDWA STATIC PAGES - COMPREHENSIVE STYLESHEET
   All pages: Index, About, News/Events, Publications, Projects, Contact
   ================================================================ */

/* ================================================================
   1. ROOT VARIABLES & RESET
   ================================================================ */

:root {
  /* Brand Colors */
  --primary: #E11F26;
  --primary-dark: #c41e3a;
  --secondary: #800080;
  --secondary-dark: #663366;
  --accent: #800080;
  --accent-dark: #663366;

  /* Neutrals */
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;

  /* Typography */
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --font-size-base: 16px;
  --line-height: 1.6;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

/* Optimize scroll performance */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hardware acceleration for animated elements - allow animations */
.project-card,
.news-card,
.campaign-card,
.stat-card,
.quick-link,
.publication-card,
.archive-card {
  will-change: transform, opacity;
  transform: translateZ(0);
  contain: paint;
}

/* Optimize sticky header scrolling */
.header-content {
  will-change: transform;
  transform: translateZ(0);
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--text-dark);
  background-color: var(--bg-white);
}

/* Skip to main content link - Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--text-dark);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  z-index: 1000;
  border-radius: 0 0 4px 4px;
  transition: top 0.3s ease;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
}

.skip-link:focus {
  top: 0;
  clip: auto;
  clip-path: none;
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Focus styles for all interactive elements */
*:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ================================================================
   2. HEADER & NAVIGATION
   ================================================================ */

/* Sticky Header Wrapper */
.sticky-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  will-change: transform;
  transform: translateZ(0);
}

/* Top Header Bar */
.top-header-bar {
  background-color: #fff5f5;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 0;
  font-size: 0.875rem;
  position: relative;
}

.top-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.top-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-header-left .social-icon {
  color: var(--bg-white);
  text-decoration: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: var(--text-dark);
}

.top-header-left .social-icon:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.top-header-left .social-icon i {
  font-size: 0.875rem;
}

.top-header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-header-link {
  color: var(--text-dark);
  text-decoration: underline;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.top-header-link:hover {
  color: var(--primary);
}

.top-header-link:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.top-header-link-icon {
  font-size: 0.875rem;
  display: inline-block;
}

/* Hide icons on mobile */
@media (max-width: 767px) {
  .top-header-link-icon {
    display: none;
  }
}

/* Responsive styles for top header */
@media (max-width: 767px) {
  .top-header-bar {
    padding: 0.4rem 0;
    font-size: 0.875rem;
  }
  
  .top-header-content {
    padding: 0 1rem;
  }
  
  .top-header-left {
    gap: 0.75rem;
  }
  
  .top-header-left .social-icon {
    width: 28px;
    height: 28px;
  }
  
  .top-header-left .social-icon i {
    font-size: 0.75rem;
  }
  
  .top-header-right {
    gap: 0.75rem;
  }
  
  .top-header-link {
    font-size: 1rem;
  }
}

.header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.header-left {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text-dark);
}

.logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-medium);
  display: none;
}

@media (min-width: 768px) {
  .logo-subtitle {
    display: block;
  }
}

.nav-menu {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  display: none;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  z-index: 200;
}

.nav-menu.active {
  display: block;
}

@media (min-width: 1024px) {
  .nav-menu {
    position: static !important;
    display: block !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    overflow: visible !important;
    z-index: auto !important;
  }

  .nav-menu.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}

/* Mobile Full-Page Modal Styles */
@media (max-width: 1023px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--secondary);
    padding: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Mobile Menu Header */
  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mobile-menu-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .mobile-menu-close {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    line-height: 1;
  }

  .mobile-menu-close:hover,
  .mobile-menu-close:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
  }

  .mobile-menu-close:active {
    transform: scale(0.95);
  }

  /* Mobile Menu Content */
  .mobile-menu-content {
    padding: 2rem 1.5rem;
  }

  .menu-items {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .menu-item {
    width: 100%;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .nav-menu.active .menu-item:nth-child(1) { animation-delay: 0.1s; }
  .nav-menu.active .menu-item:nth-child(2) { animation-delay: 0.15s; }
  .nav-menu.active .menu-item:nth-child(3) { animation-delay: 0.2s; }
  .nav-menu.active .menu-item:nth-child(4) { animation-delay: 0.25s; }
  .nav-menu.active .menu-item:nth-child(5) { animation-delay: 0.3s; }
  .nav-menu.active .menu-item:nth-child(6) { animation-delay: 0.35s; }
  .nav-menu.active .menu-item:nth-child(7) { animation-delay: 0.4s; }

  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .nav-menu .menu-item > a,
  .nav-menu .menu-item > button {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    color: white !important;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 900;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    gap: 1.5rem;
  }

  .nav-menu .menu-item.dropdown > .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white !important;
  }

  .nav-menu .menu-item.dropdown > .dropdown-toggle::after {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-left: 0;
    flex-shrink: 0;
    order: 2;
  }

  .nav-menu .menu-item > a:hover,
  .nav-menu .menu-item > button:hover,
  .nav-menu .menu-item > a:focus,
  .nav-menu .menu-item > button:focus {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.15);
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 8px;
    transform: translateX(0.5rem);
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
  }

  .nav-menu .menu-item.dropdown .submenu {
    position: static;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                padding 0.3s ease;
  }

  .nav-menu .menu-item.dropdown.open .submenu,
  .nav-menu .menu-item.dropdown .submenu.active {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    padding: 0.5rem 0;
  }

  .nav-menu .submenu li a {
    padding: 1rem 1rem 1rem 2.5rem;
    color: white !important;
    font-size: 1.05rem;
    font-weight: 800;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .nav-menu .submenu li a:hover,
  .nav-menu .submenu li a:focus {
    background-color: rgba(255, 255, 255, 0.15);
    color: white !important;
    padding-left: 3rem;
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    border-radius: 8px;
    transform: translateX(0.5rem);
  }
}

@media (min-width: 1024px) {
  .mobile-menu-header,
  .mobile-menu-title,
  .mobile-menu-close {
    display: none !important;
  }

  /* Reset mobile menu content wrapper - don't hide, just make it transparent */
  .mobile-menu-content {
    display: block !important;
    padding: 0 !important;
  }

  /* Ensure menu items are visible on desktop */
  .nav-menu .menu-items {
    display: flex !important;
    flex-direction: row !important;
    gap: 2rem !important;
    padding: 0 !important;
  }

  .nav-menu .menu-item {
    width: auto !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  /* Ensure desktop menu items override mobile styles */
  .nav-menu .menu-item > a,
  .nav-menu .menu-item > button {
    width: auto;
    color: var(--text-dark) !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    background: none;
    transition: color 0.3s ease;
    justify-content: flex-start;
  }

  .nav-menu .menu-item.dropdown > .dropdown-toggle {
    color: var(--text-dark) !important;
    display: inline-flex;
  }

  .nav-menu .menu-item.dropdown > .dropdown-toggle::after {
    color: var(--text-dark) !important;
    font-size: 0.7rem;
    margin-left: 0.25rem;
    order: 0;
  }

  .nav-menu .menu-item > a:hover,
  .nav-menu .menu-item > button:hover,
  .nav-menu .menu-item > a:focus,
  .nav-menu .menu-item > button:focus {
    color: var(--primary) !important;
    background: none;
    padding: 0;
    transform: none;
    outline: none;
  }

  .nav-menu .submenu li a {
    color: var(--text-dark) !important;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.75rem 1.5rem;
  }

  .nav-menu .submenu li a:hover,
  .nav-menu .submenu li a:focus {
    color: var(--primary) !important;
    background-color: var(--bg-light);
    padding-left: 1.5rem;
    transform: none;
    outline: none;
  }

  /* Desktop submenu positioning */
  .nav-menu .menu-item.dropdown .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    max-height: none;
    overflow: visible;
  }

  .nav-menu .menu-item.dropdown:hover .submenu,
  .nav-menu .menu-item.dropdown.open .submenu,
  .nav-menu .menu-item.dropdown:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    padding: 0.5rem 0;
  }
}

.menu-items {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.menu-item {
  position: relative;
}

.menu-item > a,
.menu-item > button {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

  .dropdown-toggle::after {
    content: "\25BE";
    font-size: 0.7rem;
    transition: transform 0.3s ease;
  }

.menu-item > a:hover,
.menu-item > button:hover,
.menu-item.dropdown:hover > a,
.menu-item.dropdown.open > .dropdown-toggle {
  color: var(--primary);
}

.menu-item.dropdown.open > .dropdown-toggle::after {
  transform: rotate(-180deg);
}

.menu-item > button {
  font: inherit;
}

.submenu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.menu-item.dropdown:hover .submenu,
.menu-item.dropdown.open .submenu,
.menu-item.dropdown:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.submenu li a:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.language-select {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-size: 0.9rem;
  cursor: pointer;
  display: none;
}

@media (min-width: 768px) {
  .language-select {
    display: block;
  }
}

@media (max-width: 1023px) {
  .header-content {
    position: relative;
  }
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Search Icon Button */
.search-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-dark);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
}

.search-icon-btn:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

.search-icon-btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.search-icon-btn i {
  pointer-events: none;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Search Modal */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.search-modal-content {
  position: relative;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(-20px);
  transition: transform 0.3s ease;
  z-index: 1001;
}

.search-modal.active .search-modal-content {
  transform: scale(1) translateY(0);
}

.search-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.search-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  font-family: var(--font-heading);
}

.search-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-medium);
  font-size: 1.25rem;
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
}

.search-modal-close:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

.search-modal-close:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.search-modal-close i {
  pointer-events: none;
}

.search-modal-body {
  padding: 2rem;
}

/* Search Form */
.search-form {
  margin-bottom: 2rem;
}

.search-input-wrapper {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.search-input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 31, 38, 0.1);
}

.search-input::placeholder {
  color: var(--text-light);
}

.search-submit-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background-color: var(--primary);
  color: var(--bg-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.search-submit-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.search-submit-btn:active {
  transform: translateY(0);
}

.search-submit-btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.search-submit-btn i {
  pointer-events: none;
}

/* Popular Searches */
.popular-searches {
  margin-top: 2rem;
}

.popular-searches-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.popular-searches-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.popular-search-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background-color: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.popular-search-tag:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.popular-search-tag:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.popular-search-tag i {
  font-size: 0.8rem;
  opacity: 0.7;
  pointer-events: none;
}

.popular-search-tag:hover i {
  opacity: 1;
}

/* Responsive Design for Search Modal */
@media (max-width: 768px) {
  .search-modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .search-modal-header {
    padding: 1.25rem 1.5rem;
  }

  .search-modal-title {
    font-size: 1.25rem;
  }

  .search-modal-body {
    padding: 1.5rem;
  }

  .search-input-wrapper {
    flex-direction: column;
  }

  .search-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .popular-searches-list {
    gap: 0.5rem;
  }

  .popular-search-tag {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
}

/* Prevent body scroll when modal is open */
body.search-modal-open {
  overflow: hidden;
}

/* ================================================================
   3. HERO SECTIONS
   ================================================================ */

.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
  animation: heroOverlayFade 1.2s ease-out forwards;
}

@keyframes heroOverlayFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-text {
  color: white;
}

.hero-badge {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateX(-30px) translateZ(0);
  animation: heroBadgeIn 0.8s ease-out 0.2s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: white;
  opacity: 0;
  transform: translateY(30px) translateZ(0);
  animation: heroTitleIn 1s ease-out 0.4s forwards;
}

.hero-title span {
  display: block;
}

.hero-title .highlight {
  color: white;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  transform: translateY(20px) translateZ(0);
  animation: heroDescriptionIn 1s ease-out 0.6s forwards;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-buttons .btn {
  opacity: 0;
  transform: translateY(15px) scale(0.95) translateZ(0);
  animation: heroButtonIn 0.6s ease-out forwards;
}

.hero-buttons .btn:nth-child(1) {
  animation-delay: 1s;
}

.hero-buttons .btn:nth-child(2) {
  animation-delay: 1.2s;
}

.hero-stats {
  background: rgba(128, 0, 128, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-item:last-child {
  margin-bottom: 0;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.stat-content {
  color: white;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Inner Page Hero */
.inner-page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
}

.inner-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.inner-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Archive Hero */
.archive-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.archive-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.archive-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* 404 Error Page Styles */
.error-404-section {
  padding: 4rem 2rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.error-404-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.error-404-icon {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.error-404-title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--primary);
  margin: 0;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.error-404-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 1rem 0 1.5rem;
}

.error-404-description {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404-description-secondary {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.error-404-helpful-links {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--border-color);
}

.helpful-links-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

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

.helpful-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.helpful-link-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  color: var(--primary);
}

.helpful-link-card:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.helpful-link-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: white;
  transition: transform 0.3s ease;
}

.helpful-link-card:hover .helpful-link-icon {
  transform: scale(1.1) rotate(5deg);
}

.helpful-link-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: inherit;
}

.helpful-link-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .error-404-section {
    padding: 3rem 1.5rem;
    min-height: 50vh;
  }

  .error-404-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }

  .error-404-title {
    font-size: 4rem;
  }

  .error-404-subtitle {
    font-size: 1.5rem;
  }

  .error-404-description,
  .error-404-description-secondary {
    font-size: 0.95rem;
  }

  .error-404-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .error-404-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .error-404-helpful-links {
    margin-top: 3rem;
    padding-top: 2rem;
  }

  .helpful-links-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .helpful-link-card {
    padding: 1.5rem 1rem;
  }
}

/* ================================================================
   4. BUTTONS & LINKS
   ================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:focus-visible {
  outline: 3px solid white;
  outline-offset: 3px;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px) translateZ(0);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:focus-visible {
  outline: 3px solid white;
  outline-offset: 3px;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary);
}

.btn-white {
  background-color: white;
  color: var(--primary);
}

.btn-white:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px) translateZ(0);
  box-shadow: var(--shadow-lg);
}

.btn-white:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.btn-outline-white {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-white:hover {
  background-color: var(--primary);
  color: white;
}

.btn-bw {
  background-color: var(--text-dark);
  color: white;
  border: 2px solid var(--text-dark);
}

.btn-bw:hover {
  background-color: #222222;
  border-color: #222222;
  transform: translateY(-2px) translateZ(0);
  box-shadow: var(--shadow-lg);
}

.btn-bw:focus-visible {
  outline: 3px solid white;
  outline-offset: 3px;
}

.read-more-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more-link:hover {
  color: var(--primary-dark);
  gap: 0.75rem;
}

/* ================================================================
   5. BREADCRUMB NAVIGATION
   ================================================================ */

.breadcrumb {
  background-color: var(--bg-light);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--text-light);
}

.breadcrumb .current {
  color: var(--text-dark);
  font-weight: 600;
}

/* ================================================================
   6. QUICK LINKS SECTION
   ================================================================ */

.quick-links-section {
  padding: 4rem 2rem;
  background-color: var(--bg-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 3rem;
  text-align: left;
}

.quick-links-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .quick-links-container {
    grid-template-columns: 70% 30%;
    gap: 2.5rem;
  }
}

.quick-links-left {
  width: 100%;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .quick-links-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
  }
}

.chairperson-message {
  background-color: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  text-align: center;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.chairperson-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.chairperson-image-container {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.chairperson-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.chairperson-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.chairperson-role {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0;
}

.chairperson-message:hover {
  transform: translateY(-8px) translateZ(0);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
  text-decoration: none;
  color: inherit;
}

@media (max-width: 767px) {
  .chairperson-message {
    margin-top: 2rem;
  }
}

.quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.quick-link:hover {
  transform: translateY(-8px) translateZ(0);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.quick-link-icon {
  width: 64px;
  height: 64px;
  background-color: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
  transition: all 0.3s ease;
  transform: translateZ(0);
}

.quick-link-icon i {
  font-size: 2rem;
}

.quick-link:hover .quick-link-icon {
  background-color: var(--secondary);
  transform: scale(1.1) translateZ(0);
}

.quick-link h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.quick-link p {
  font-size: 0.85rem;
  color: #555555;
}

/* ================================================================
   7. NEWS & CARDS SECTIONS
   ================================================================ */

.latest-news-section {
  padding: 4rem 2rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.view-all-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  color: var(--primary-dark);
}

.news-grid,
.campaigns-grid,
.projects-grid,
.publications-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .campaigns-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-grid,
  .publications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .campaigns-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .publications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card,
.campaign-card,
.project-card,
.archive-card,
.publication-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-card,
.campaign-card {
  cursor: pointer;
}

.news-card:hover,
.campaign-card:hover,
.project-card:hover,
.archive-card:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.news-image,
.campaign-image,
.project-image,
.archive-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.news-title,
.archive-card-title,
.campaign-title,
.project-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 1rem 1rem 0.5rem;
  margin: 0;
  transition: color 0.3s ease;
}

.news-card:hover .news-title,
.archive-card:hover .archive-card-title,
.campaign-card:hover .campaign-title,
.project-card:hover .project-title {
  color: var(--primary);
}

.news-card:hover,
.campaign-card:hover {
  text-decoration: none;
  color: inherit;
}

.news-excerpt {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0 1rem;
  margin: 0 0 1rem;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
}

.news-date,
.news-read-time {
  color: #555555;
  font-size: 0.9rem;
}

.news-date i,
.news-read-time i {
  margin-right: 0.25rem;
}

.campaign-date {
  padding: 0 1rem 1rem;
  color: #555555;
  font-size: 0.9rem;
  margin: 0;
}

.archive-card-excerpt,
.campaign-description,
.project-description {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.project-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.project-card-link:hover {
  transform: translateY(-4px) translateZ(0);
}

.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.project-card .project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.project-card .project-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.project-status,
.project-sector {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.project-status {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.12) 100%);
  color: #222222;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.project-sector {
  background: linear-gradient(135deg, rgba(128, 0, 128, 0.15) 0%, rgba(128, 0, 128, 0.25) 100%);
  color: var(--secondary);
  border: 1px solid rgba(128, 0, 128, 0.3);
}

.project-card .project-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1rem 0;
  padding: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.project-period {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.project-period strong {
  color: var(--text-dark);
  font-weight: 600;
}

.project-description {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.project-separator {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-color), transparent);
  margin: 1rem 0;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-medium);
  font-size: 0.9rem;
}

.project-location i {
  color: var(--primary);
  font-size: 1rem;
}

/* Publication Formats */
.publication-formats {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.format-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-medium);
  font-size: 0.85rem;
}

.format-icon {
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.format-pdf {
  color: #DC143C;
}

.format-word {
  color: #2B579A;
}

.format-ppt {
  color: #D04423;
}

.format-item:hover .format-icon {
  transform: scale(1.1);
}

/* News Meta Info */
.news-meta-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.news-date-item,
.news-read-time-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-medium);
  font-size: 0.85rem;
}

.news-date-item i,
.news-read-time-item i {
  color: var(--primary);
  font-size: 0.9rem;
}

/* Project card partner logos - keep small */
.project-card .partner-logo,
.project-footer .partner-logo {
  height: 42px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.8;
  transition: all 0.3s ease;
  display: inline-block;
}

.project-card:hover .partner-logo {
  opacity: 1;
  filter: grayscale(0%);
}

.publication-download-icon {
  font-size: 1.5rem;
  color: var(--primary);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.project-card:hover .publication-download-icon {
  opacity: 1;
  transform: translateY(-2px);
}

.project-card:hover .project-title {
  color: var(--primary);
}

.archive-category {
  display: inline-block;
  background-color: var(--bg-light);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* ================================================================
   8. IMPACT HIGHLIGHTS SECTION
   ================================================================ */

.impact-highlights-section {
  padding: 4rem 2rem;
  background-color: var(--bg-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.stat-card-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.stat-card-icon i {
  font-size: 1.75rem;
  color: white;
}

.stat-card-content {
  flex: 1;
}

.stat-card-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}

.stat-card-label {
  font-size: 0.95rem;
  color: #555555;
  margin-top: 0.25rem;
}

/* ================================================================
   8.4. TESTIMONIALS SECTION
   ================================================================ */

.testimonials-section {
  padding: 4rem 2rem;
  background-color: #fef7f7;
}

.testimonials-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .testimonials-container {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial-card {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.testimonial-text-card {
  padding: 2rem;
  position: relative;
}

.testimonial-quote-icon {
  font-size: 4rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.testimonial-quote-icon i {
  display: block;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.25rem 0;
}

.testimonial-author-role {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin: 0;
}

.testimonial-image-card {
  padding: 0;
  background-color: transparent;
}

.testimonial-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 aspect ratio */
  background-color: #f0f0f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.testimonial-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .testimonial-text-card {
    padding: 1.5rem;
  }

  .testimonial-quote-icon {
    font-size: 3rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

/* ================================================================
   8.5. OUR PARTNERS SECTION
   ================================================================ */

.partners-section {
  padding: 4rem 2rem;
  background-color: white;
}

.partners-title {
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
}

.partners-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
  align-items: center;
  justify-items: center;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 2rem;
  }
}

@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 3.5rem 2.5rem;
  }
}

@media (min-width: 1280px) {
  .partners-grid {
    max-width: 1400px;
    margin: 0 auto;
  }
}

/* Partners section - specific styles scoped to partners-section */
.partners-section .partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 80px;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.partners-section .partner-logo:hover {
  transform: scale(1.1);
}

.partners-section .partner-logo img {
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.partners-section .partner-logo:hover img {
  filter: grayscale(100%);
}

@media (min-width: 1024px) {
  .partners-section .partner-logo img {
    max-height: 120px;
  }
}

/* ================================================================
   9. FEATURED RESOURCE SECTION
   ================================================================ */

.featured-resource-section {
  padding: 4rem 2rem;
  background-color: var(--bg-light);
}

/* 4 columns for publications in featured resource section */
.featured-resource-section .projects-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .featured-resource-section .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .featured-resource-section .projects-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Top border for project-footer in Latest Publications section (index.html only) */
.featured-resource-section .project-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 0.75rem;
  margin-top: auto;
}

.featured-resource-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .featured-resource-content {
    grid-template-columns: 1fr 1fr;
  }
}

.featured-resource-main {
  background-color: var(--primary);
  color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-resource-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.featured-resource-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.featured-resource-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.featured-resource-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .featured-resource-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .featured-resource-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.resource-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.resource-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.resource-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 1rem;
  margin: 0;
}

.resource-description {
  padding: 0 1rem;
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0.5rem 0;
}

.resource-date {
  padding: 0 1rem 1rem;
  color: #555555;
  font-size: 0.9rem;
  margin: 0;
}

/* ================================================================
   10. GBV REPORT SECTION
   ================================================================ */

.gbv-report-section {
  background-color: var(--secondary);
  color: white;
  padding: 4rem 2rem;
}

.gbv-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .gbv-content {
    grid-template-columns: 1fr 1fr;
  }
}

.gbv-text {
  max-width: 500px;
}

.gbv-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gbv-header-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gbv-header-icon i {
  font-size: 2rem;
  color: white;
}

.gbv-header .section-title {
  color: white;
  margin: 0;
}

.gbv-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.gbv-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.gbv-features li {
  padding: 0.75rem 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gbv-features li i {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1rem;
}

.gbv-features li span {
  flex: 1;
}

.gbv-contact-box {
  background: #f5f5f5;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  max-width: 350px;
  margin-left: auto;
}

.sidebar-widget.gbv-helpline {
  background-color: var(--secondary);
  color: white;
  border: none;
}

.sidebar-widget.gbv-helpline .widget-title {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.sidebar-widget.gbv-helpline .gbv-info h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.sidebar-widget.gbv-helpline .gbv-info p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
}

.sidebar-widget.gbv-helpline .gbv-phone {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  transition: opacity 0.3s ease;
}

.sidebar-widget.gbv-helpline .gbv-phone:hover {
  opacity: 0.9;
  text-decoration: underline;
}

.sidebar-widget.gbv-helpline .gbv-report-btn {
  display: block;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
  padding: 0.75rem 1rem;
  background-color: white;
  color: var(--secondary);
  border: 2px solid white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
}

.sidebar-widget.gbv-helpline .gbv-report-btn:hover,
.sidebar-widget.gbv-helpline .gbv-report-btn:focus {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--secondary-dark);
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.sidebar-widget.gbv-helpline .gbv-report-btn i {
  margin-right: 0.5rem;
}

.gbv-contact-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-phone,
.contact-email {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-phone:hover,
.contact-email:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.gbv-helpline {
  background-color: var(--accent);
  border-color: var(--primary);
  color: white;
}

.sidebar-widget.gbv-helpline,
.gbv-helpline .sidebar-widget {
  background-color: var(--accent);
  border: none;
}

.gbv-info {
  background: transparent;
  padding: 0;
}

.gbv-info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gbv-info-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gbv-info-icon i {
  font-size: 1.75rem;
  color: white;
}

.gbv-info-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin: 0;
  border: none;
  padding: 0;
}

.gbv-info-subtitle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.gbv-info-description {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.gbv-contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gbv-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gbv-contact-item i {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.gbv-phone,
.gbv-email {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.gbv-phone:hover,
.gbv-email:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* ================================================================
   11. JOIN CTA SECTION
   ================================================================ */

.join-cta-section {
  background-color: #f5f5f5;
  color: var(--text-dark);
  padding: 4rem 2rem;
}

.join-cta-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .join-cta-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.join-cta-text .section-title {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.join-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.join-features {
  list-style: none;
  margin-bottom: 2rem;
}

.join-features li {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text-dark);
}

.join-features li i {
  margin-right: 0.5rem;
  color: var(--primary);
}

.join-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.join-contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.join-contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.join-contact-form .btn {
  margin-top: 0.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: white;
  color: var(--text-dark);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 31, 38, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
}

.contact-form-main {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-form-section {
  position: relative;
}

/* ================================================================
   12. CAMPAIGNS SECTION
   ================================================================ */

.campaigns-section {
  padding: 4rem 2rem;
  background-color: white;
}

/* 4 columns for projects in campaigns section (homepage) */
.campaigns-section .projects-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .campaigns-section .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .campaigns-section .projects-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.campaign-card {
  position: relative;
}

/* ================================================================
   13. FOOTER
   ================================================================ */

.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-org-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FFED4E;
}

.footer-contact {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item h4 i {
  margin-right: 0.5rem;
}

.btn i {
  margin-right: 0.5rem;
}

.social-links a i {
  font-size: 1.2rem;
}

.footer-contact a {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #FFED4E;
  text-decoration: underline;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form input {
  padding: 0.75rem;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-developer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-developer a {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-developer a:hover {
  color: #FFED4E;
  text-decoration: underline;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary);
}

/* ================================================================
   14. INNER PAGE LAYOUT (About, etc.)
   ================================================================ */

.inner-page-container {
  padding: 3rem 2rem;
}

.inner-page-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .inner-page-content {
    grid-template-columns: 7fr 3fr;
  }
}

.page-content {
  background-color: white;
}

.page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 2rem 0 0.75rem;
  text-transform: none;
}

.article-content .content-heading {
  font-size: 1.35rem;
}

.content-heading:first-child {
  margin-top: 0;
}

.content-subheading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1.5rem 0 0.75rem;
}

.content-text {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-list {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  color: var(--text-medium);
  line-height: 1.6;
}

.content-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.featured-image {
  width: 100%;
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Sidebar Widgets */
.sidebar-widget {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.sidebar-widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.75rem;
}

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.post-date {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.post-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.post-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.post-link:hover {
  color: var(--primary-dark);
}

.resources-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resource-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.resource-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.resource-item h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.download-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.download-link:hover {
  color: var(--primary-dark);
}

/* ================================================================
   15. ARCHIVE PAGES (News, Publications, Projects)
   ================================================================ */

.archive-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 2rem;
}

.archive-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 0;
}

.archive-filters {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.search-box {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.search-box:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 31, 38, 0.1);
}

.filter-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .filter-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .filter-group {
    grid-template-columns: repeat(4, 1fr);
  }
}

.filter-select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: white;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary);
}

/* Search Page Styles */
.search-page-search {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.search-page-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  margin-top: 0;
}

.search-page-form {
  width: 100%;
}

.search-page-input-wrapper {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.search-page-input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  transition: all 0.3s ease;
}

.search-page-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 31, 38, 0.1);
}

.search-page-input::placeholder {
  color: var(--text-light);
}

.search-page-submit-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background-color: var(--primary);
  color: var(--bg-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.search-page-submit-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.search-page-submit-btn:active {
  transform: translateY(0);
}

.search-page-submit-btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.search-page-submit-btn i {
  pointer-events: none;
}

@media (max-width: 768px) {
  .search-page-search {
    padding: 1.25rem;
  }

  .search-page-input-wrapper {
    flex-direction: column;
  }

  .search-page-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Project Image Placeholder */
.project-image-placeholder {
  width: 100%;
  height: 200px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  overflow: hidden;
}

.project-image-placeholder .placeholder-logo {
  max-width: 120px;
  max-height: 120px;
  width: auto;
  height: auto;
  opacity: 0.3;
  object-fit: contain;
}

.archive-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.category-list {
  list-style: none;
}

.category-list li {
  margin-bottom: 0.75rem;
}

.category-list a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.category-list a:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

/* ================================================================
   16. SINGLE ARTICLE PAGES (News, Publications, Projects)
   ================================================================ */

.single-article-container {
  padding: 3rem 2rem;
}

.single-article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .single-article {
    grid-template-columns: 2fr 1fr;
  }
}

.article-content {
  background-color: white;
  line-height: 1.8;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin: 2rem 0 1rem;
  text-transform: uppercase;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1.5rem 0 0.75rem;
}

.article-intro {
  font-size: 1.1rem;
  color: var(--text-medium);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.article-content p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.article-list {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-medium);
}

.article-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.article-image {
  margin: 2.5rem 0;
  text-align: center;
}

.article-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  margin: 0 auto;
}

.article-image figcaption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-medium);
  font-style: italic;
  text-align: center;
  padding: 0 1rem;
  line-height: 1.6;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 2rem;
}

.article-date,
.article-author,
.article-read-time {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}

.article-date i,
.article-author i,
.article-read-time i {
  font-size: 1.2rem;
  opacity: 0.9;
}

.single-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  width: 100%;
}

.vacancy-single-hero {
  background: linear-gradient(135deg, #E11F26 0%, #800080 100%);
}

.vacancy-single-hero .single-hero-content {
  max-width: 900px;
  text-align: center;
}

.single-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.single-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.single-category {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.single-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.single-hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.95);
}

.article-cta {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  border-left: 4px solid var(--primary);
}

.article-cta h3 {
  margin-top: 0;
}

/* Social Share Bar */
.social-share-bar {
  margin: 3rem 0 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(225, 31, 38, 0.05) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  text-align: center;
}

.share-bar-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  background-color: white;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.share-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn:hover i {
  transform: scale(1.1);
}

.share-btn.facebook {
  color: #1877F2;
  border-color: #1877F2;
}

.share-btn.facebook:hover {
  background-color: #1877F2;
  color: white;
}

.share-btn.twitter {
  color: #000000;
  border-color: #000000;
}

.share-btn.twitter:hover {
  background-color: #000000;
  color: white;
}

.share-btn.linkedin {
  color: #0A66C2;
  border-color: #0A66C2;
}

.share-btn.linkedin:hover {
  background-color: #0A66C2;
  color: white;
}

.share-btn.email {
  color: var(--primary);
  border-color: var(--primary);
}

.share-btn.email:hover {
  background-color: var(--primary);
  color: white;
}

.share-btn.copy-link {
  color: #666666;
  border-color: #666666;
}

.share-btn.copy-link:hover {
  background-color: #666666;
  color: white;
}

.share-btn button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
}

/* Executive Board Members Grid */
.board-members-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .board-members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .board-members-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.board-member-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.board-member-card:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.board-member-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--bg-light);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.board-member-image img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
  border: 3px solid var(--border-color);
}

.board-member-card:hover .board-member-image img {
  transform: scale(1.08);
  border-color: var(--primary);
}

.board-member-info {
  padding: 1rem 1.5rem 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.board-member-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.4rem 0;
  line-height: 1.4;
}

.board-member-position {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

.content-intro {
  margin-bottom: 2rem;
}

.content-intro .content-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-medium);
}

/* Timeline Styles */
.timeline-container {
  position: relative;
  margin: 4rem 0;
  padding: 0 1rem;
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

/* Central Timeline Line */
.timeline-list::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  z-index: 1;
  animation: timelineGrow 1.2s ease-out 0.3s forwards;
}

@keyframes timelineGrow {
  to {
    transform: translateX(-50%) scaleY(1);
  }
}

@media (max-width: 1023px) {
  .timeline-list::before {
    left: 30px;
    transform: scaleY(0);
    animation: timelineGrowMobile 1.2s ease-out 0.3s forwards;
  }
}

@keyframes timelineGrowMobile {
  to {
    transform: scaleY(1);
  }
}

/* Timeline Items */
.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  padding: 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}

.timeline-item:nth-child(6) {
  animation-delay: 0.6s;
}

.timeline-item:nth-child(7) {
  animation-delay: 0.7s;
}

.timeline-item:nth-child(8) {
  animation-delay: 0.8s;
}

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

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  border: 4px solid white;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
  transform: translateX(-50%) scale(1.2);
  box-shadow: 0 4px 16px rgba(225, 31, 38, 0.4);
}

@media (max-width: 1023px) {
  .timeline-marker {
    left: 30px;
    transform: none;
  }
}

.timeline-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

@media (min-width: 1024px) {
  .timeline-item-left .timeline-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .timeline-item-right .timeline-content {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Alternating layout: left items have image left, right items have image right */
  .timeline-item-left .timeline-image-wrapper {
    order: 1;
  }
  
  .timeline-item-left .timeline-text-wrapper {
    order: 2;
  }
  
  .timeline-item-right .timeline-image-wrapper {
    order: 2;
  }
  
  .timeline-item-right .timeline-text-wrapper {
    order: 1;
  }
}

/* Timeline Image */
.timeline-image {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--bg-light);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.timeline-item:hover .timeline-image {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.timeline-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px;
  background-color: var(--bg-light);
  transition: transform 0.5s ease;
}

.timeline-item:hover .timeline-image img {
  transform: scale(1.05);
}

.timeline-image-caption {
  padding: 0.75rem 1rem;
  background-color: var(--bg-light);
  font-size: 0.85rem;
  color: var(--text-medium);
  text-align: center;
  margin: 0;
  font-style: italic;
}

/* Timeline Text */
.timeline-text-wrapper {
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeline-item:hover .timeline-text-wrapper {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

@media (min-width: 1024px) {
  .timeline-item-left .timeline-text-wrapper {
    text-align: right;
  }
  
  .timeline-item-right .timeline-text-wrapper {
    text-align: left;
  }
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin: 0 0 0.5rem 0;
  line-height: 1;
  transition: color 0.3s ease;
}

.timeline-item:hover .timeline-year {
  color: var(--secondary);
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.timeline-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 1023px) {
  .timeline-container {
    padding-left: 3rem;
  }
  
  .timeline-content {
    grid-template-columns: 1fr;
  }
  
  .timeline-image-wrapper,
  .timeline-text-wrapper {
    order: initial !important;
  }
  
  .timeline-text-wrapper {
    text-align: left !important;
  }
  
  .timeline-year {
    font-size: 2rem;
  }
  
  .timeline-title {
    font-size: 1.3rem;
  }
}

/* Photo Albums Grid */
.photo-albums-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .photo-albums-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .photo-albums-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.photo-album-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.photo-album-card:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  text-decoration: none;
  color: inherit;
}

.photo-album-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: var(--bg-light);
}

.photo-album-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-album-card:hover .photo-album-image img {
  transform: scale(1.1);
}

.photo-album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-album-card:hover .photo-album-overlay {
  opacity: 1;
}

.photo-album-overlay i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.photo-album-overlay span {
  font-size: 0.9rem;
  font-weight: 600;
}

.photo-album-info {
  padding: 1.5rem;
}

.photo-album-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  transition: color 0.3s ease;
}

.photo-album-card:hover .photo-album-title {
  color: var(--primary);
}

/* Photo Grid (Single Album Page) */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }
}

.photo-item {
  margin: 0;
  position: relative;
}

.photo-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background-color: var(--bg-light);
  transition: all 0.3s ease;
}

.photo-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.photo-link:focus {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.photo-thumbnail {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photo-link:hover .photo-thumbnail {
  transform: scale(1.1);
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-link:hover .photo-overlay,
.photo-link:focus .photo-overlay {
  opacity: 1;
}

.photo-overlay i {
  color: white;
  font-size: 2rem;
}

.photo-caption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-medium);
  text-align: center;
  line-height: 1.5;
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  cursor: pointer;
}

.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.lightbox-content {
  position: relative;
  max-width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
  margin-top: 1.5rem;
  text-align: center;
  color: white;
  max-width: 800px;
}

.lightbox-caption {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: white;
}

.lightbox-counter {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
  font-size: 1.2rem;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:focus,
.lightbox-prev:focus,
.lightbox-next:focus {
  background-color: var(--primary);
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(225, 31, 38, 0.3);
}

.lightbox-prev[aria-disabled="true"],
.lightbox-next[aria-disabled="true"] {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .lightbox-container {
    padding: 1rem;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-img {
    max-height: 70vh;
  }
  
  .lightbox-caption {
    font-size: 1rem;
  }
}

/* Video Gallery Grid */
.video-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .video-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .video-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
  }
}

.video-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  text-decoration: none;
  color: inherit;
}

.video-poster {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background-color: var(--bg-light);
}

.video-poster img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-poster img {
  transform: scale(1.1);
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 1;
}

.video-card:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.video-play-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  padding-left: 4px;
}

.video-card:hover .video-play-icon {
  transform: scale(1.15);
  background-color: var(--secondary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.video-info {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%);
}

.video-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.video-card:hover .video-title {
  color: var(--primary);
}

/* Video Player Section (Single Video Page) */
.video-player-section {
  margin: 2rem 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background-color: #000;
}

.video-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-information {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.video-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.video-date,
.video-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.video-date i,
.video-duration i {
  color: var(--primary);
  font-size: 1rem;
}

/* Legacy support */
.article-sharing {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.article-sharing p {
  font-weight: 600;
  margin-bottom: 1rem;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.related-posts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.related-post {
  display: flex;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.related-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.related-post:hover {
  transform: translateX(4px);
}

.related-thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.related-post h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.related-post:hover h4 {
  color: var(--primary);
}

.related-post a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-post a:hover {
  color: var(--primary);
}

.related-date {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin: 0;
}

.related-date i {
  margin-right: 0.25rem;
}

.article-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

.nav-prev,
.nav-all,
.nav-next {
  padding: 1rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.nav-prev:hover,
.nav-all:hover,
.nav-next:hover {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ================================================================
   17. PAGINATION
   ================================================================ */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.pagination-btn {
  padding: 0.6rem 1.2rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  gap: 0.5rem;
}

.pagination-number {
  width: 40px;
  height: 40px;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-number:hover {
  background-color: var(--bg-light);
}

.pagination-number.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ================================================================
   18. PUBLICATIONS SPECIFIC
   ================================================================ */

.publication-card {
  display: flex;
  flex-direction: column;
  background-color: white;
}

.publication-thumbnail {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.publication-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.publication-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.publication-type {
  display: inline-block;
  background-color: rgba(225, 31, 38, 0.1);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.publication-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.publication-description {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.publication-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.publication-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .publication-detail {
    grid-template-columns: 300px 1fr;
  }
}

.publication-cover {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.publication-download {
  margin-top: 1.5rem;
}

.publication-detail-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.publication-meta-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.meta-item {
  display: flex;
  gap: 1rem;
}

.meta-label {
  font-weight: 600;
  color: var(--text-dark);
  min-width: 100px;
}

.meta-value {
  color: var(--text-medium);
}

/* Publication Info Box - New Design */
.publication-info-box {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .publication-info-box {
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
  }
}

.publication-cover-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.publication-cover {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.publication-info-content {
  display: flex;
  flex-direction: column;
}

.publication-type {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  width: fit-content;
}

.publication-info-content .publication-detail-title {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.publication-overview {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.publication-meta-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.publication-meta-list .meta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.publication-meta-list .meta-item:nth-child(2n) {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  padding-left: 1rem;
  margin-left: 1rem;
}

@media (max-width: 767px) {
  .publication-meta-list {
    grid-template-columns: 1fr;
  }
  
  .publication-meta-list .meta-item:nth-child(2n) {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
}

.publication-meta-list .meta-item i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.publication-meta-list .meta-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.publication-meta-list .meta-label {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.publication-meta-list .meta-value {
  color: var(--text-medium);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Download Files Section */
.download-files-section {
  margin: 3rem 0;
}

.download-files-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #1a4d7a;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.download-files-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.download-file-card {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.download-file-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.download-file-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.download-file-icon.pdf-icon {
  background-color: #E11F26;
  color: white;
}

.download-file-icon.word-icon {
  background-color: #2B579A;
  color: white;
}

.download-file-icon i {
  font-size: 1.5rem;
}

.download-file-info {
  flex: 1;
  min-width: 0;
}

.download-file-name {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.download-cloud-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a4d7a;
  color: white;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.download-cloud-btn:hover {
  background-color: #153a5a;
  transform: scale(1.05);
}

.download-cloud-btn i {
  font-size: 1.1rem;
}

.related-publications {
  margin-top: 4rem;
  border-top: 2px solid var(--border-color);
  padding-top: 3rem;
}

.related-pub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.related-pub-card {
  text-align: center;
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.related-pub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-pub-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-pub-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 1rem 1rem 0.5rem;
}

.related-pub-card .pub-type {
  display: block;
  color: var(--text-medium);
  font-size: 0.85rem;
  padding: 0 1rem;
  margin: 0.5rem 0;
}

.related-pub-card .view-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-bottom: 1rem;
}

.related-pub-card .view-link:hover {
  color: var(--primary-dark);
}

/* ================================================================
   19. PROJECTS SPECIFIC
   ================================================================ */

.project-info-box {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  display: block;
  margin-bottom: 2rem;
}

.project-info-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary)!important;
  margin: 0 0 0.5rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(128, 0, 128, 0.2);
}

.info-item label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #333333;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.info-item label i {
  margin-right: 0.5rem;
  color: #444444;
  width: 20px;
}

.info-item span {
  color: #444444;
  font-weight: 400;
}

.info-item .project-status {
  color: #444444;
  font-weight: 400;
}

/* ================================================================
   20. CONTACT PAGE
   ================================================================ */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

@media (min-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 65% 35%;
    gap: 3rem;
  }
}

.contact-form-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-form-section,
.contact-info-section {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Departments Section */
.departments-section {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.departments-section h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.departments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .departments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.department-box {
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.department-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.department-box:nth-child(1)::before {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.department-box:nth-child(2)::before {
  background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.department-box:nth-child(3)::before {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.department-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.department-box:nth-child(1):hover {
  border-color: var(--primary);
}

.department-box:nth-child(2):hover {
  border-color: var(--secondary);
}

.department-box:nth-child(3):hover {
  border-color: var(--primary);
}

.department-box:hover::before {
  transform: scaleX(1);
}

.department-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.department-box:nth-child(1) .department-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.department-box:nth-child(2) .department-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.department-box:nth-child(3) .department-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.department-box:hover .department-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.department-box h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.department-box p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.department-box a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: block;
  word-wrap: break-word;
  word-break: break-all;
  hyphens: auto;
  line-height: 1.4;
  padding: 0.5rem;
  margin-top: 0.5rem;
  border-radius: var(--radius-sm);
}

.department-box:nth-child(1) a {
  color: var(--primary);
  background-color: rgba(225, 31, 38, 0.05);
}

.department-box:nth-child(1) a:hover {
  color: var(--primary-dark);
  background-color: rgba(225, 31, 38, 0.1);
}

.department-box:nth-child(2) a {
  color: var(--secondary);
  background-color: rgba(128, 0, 128, 0.05);
}

.department-box:nth-child(2) a:hover {
  color: var(--secondary-dark);
  background-color: rgba(128, 0, 128, 0.1);
}

.department-box:nth-child(3) a {
  color: var(--primary);
  background-color: rgba(225, 31, 38, 0.05);
}

.department-box:nth-child(3) a:hover {
  color: var(--primary-dark);
  background-color: rgba(225, 31, 38, 0.1);
}

.contact-form-section h2,
.contact-info-section h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.form-intro {
  color: var(--text-medium);
  margin-bottom: 2rem;
}

/* Contact Info Items with Icons */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.contact-info-item:first-child {
  padding-top: 0;
}

.contact-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.contact-info-item:nth-child(1) .contact-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.contact-info-item:nth-child(2) .contact-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.contact-info-item:nth-child(3) .contact-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.contact-info-item:nth-child(4) .contact-icon,
.contact-info-item.office-hours-item .contact-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
}

.contact-info-item.gbv-emergency .contact-icon.emergency-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(128, 0, 128, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(128, 0, 128, 0);
  }
}

.contact-details {
  flex: 1;
}

.contact-details h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.contact-details a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.contact-info-item.gbv-emergency {
  background: linear-gradient(135deg, rgba(225, 31, 38, 0.05) 0%, rgba(128, 0, 128, 0.05) 100%);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--secondary);
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}

.contact-info-item.gbv-emergency .contact-details h3 {
  color: var(--secondary);
  font-size: 1.1rem;
}

.helpline-text {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem !important;
}

.helpline-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary) !important;
  margin: 0.75rem 0 !important;
  display: block;
}

.helpline-number a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.contact-info-item.gbv-emergency .btn-primary {
  background-color: var(--secondary);
  color: white;
}

.contact-info-item.gbv-emergency .btn-primary:hover {
  background-color: var(--secondary-dark);
  color: white;
}

/* Contact Departments */
.contact-departments {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.contact-departments h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.department-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.department-item i {
  width: 36px;
  height: 36px;
  background-color: var(--bg-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.department-item:nth-child(1) i {
  color: var(--primary);
}

.department-item:nth-child(2) i {
  color: var(--secondary);
}

.department-item:nth-child(3) i {
  color: var(--primary);
}

.department-item > div {
  flex: 1;
}

.department-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.department-item a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.department-item a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.gbv-highlight {
  border-left-color: var(--secondary);
  background: linear-gradient(135deg, rgba(225, 31, 38, 0.05) 0%, rgba(128, 0, 128, 0.05) 100%);
}

.helpline-info {
  font-size: 0.95rem;
  line-height: 1.6;
}

.support-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.support-list .btn-outline {
  width: 100%;
  justify-content: center;
}

.social-media-section {
  margin-top: 0;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: none;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.social-media-section h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-icon.facebook {
  background-color: #1877F2;
  color: white;
}

.social-icon.twitter {
  background-color: #1DA1F2;
  color: white;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-icon.youtube {
  background-color: #FF0000;
  color: white;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Google Map Section */
.map-section {
  margin: 4rem 0;
  padding: 3rem 0;
}

.map-section h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-align: center;
}

.map-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
}

@media (max-width: 767px) {
  .map-container iframe {
    height: 300px;
  }
}

.faq-list,
.quick-links-list {
  list-style: none;
}

.faq-list li,
.quick-links-list li {
  margin-bottom: 0.75rem;
}

.faq-list a,
.quick-links-list a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.faq-list a:hover,
.quick-links-list a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ================================================================
   21. RESPONSIVE DESIGN
   ================================================================ */

@media (max-width: 767px) {
  .header-content {
    height: 70px;
  }

  .logo-img {
    width: 48px;
    height: 48px;
  }

  .logo-title {
    font-size: 1rem;
  }

  .hero-text {
    margin-bottom: 2rem;
  }

  .hero-stats {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .archive-container {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

  .project-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .partner-logo {
    align-self: flex-end;
  }

  .filter-group {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================================
   22. ANIMATIONS & TRANSITIONS
   ================================================================ */

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Section Animations */
@keyframes heroBadgeIn {
  from {
    opacity: 0;
    transform: translateX(-30px) scale(0.9) translateZ(0);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1) translateZ(0);
  }
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(30px) translateZ(0);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateZ(0);
  }
}

@keyframes heroDescriptionIn {
  from {
    opacity: 0;
    transform: translateY(20px) translateZ(0);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateZ(0);
  }
}

@keyframes heroButtonIn {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.95) translateZ(0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) translateZ(0);
  }
}

/* Elements that should animate on scroll - marked with data-animate attribute */
.project-card[data-animate]:not(.animate-fadeIn),
.news-card[data-animate]:not(.animate-fadeIn),
.campaign-card[data-animate]:not(.animate-fadeIn),
.stat-card[data-animate]:not(.animate-fadeIn),
.quick-link[data-animate]:not(.animate-fadeIn),
.publication-card[data-animate]:not(.animate-fadeIn),
.archive-card[data-animate]:not(.animate-fadeIn) {
  opacity: 0;
  transform: translateY(20px) translateZ(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.animate-fadeIn {
  opacity: 1 !important;
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slideInLeft {
  animation: slideInLeft 0.6s ease-out forwards;
}

/* ================================================================
   23. UTILITY CLASSES
   ================================================================ */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.p-1 {
  padding: 0.5rem;
}
.p-2 {
  padding: 1rem;
}
.p-3 {
  padding: 1.5rem;
}
.p-4 {
  padding: 2rem;
}

/* ================================================================
   24. GBV REPORTING PAGE
   ================================================================ */

/* GBV Hero Section */
.gbv-hero {
  position: relative;
  background: linear-gradient(135deg, #e11f26 0%, #800080 100%);
  padding: 5rem 2rem;
  text-align: center;
  color: white;
  overflow: hidden;
}

.gbv-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
  opacity: 0.5;
}

.gbv-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.gbv-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.gbv-hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.gbv-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.gbv-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.gbv-hero-hotline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.gbv-hero-hotline i {
  font-size: 1.5rem;
}

.gbv-hotline-number {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.gbv-hotline-number:hover {
  transform: scale(1.05);
}

.gbv-hotline-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* GBV Page Wrapper */
.gbv-page-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .gbv-page-wrapper {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }
}

/* GBV Notice */
.gbv-notice {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(225, 31, 38, 0.1) 0%, rgba(128, 0, 128, 0.1) 100%);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
}

.gbv-notice-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.gbv-notice-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.gbv-notice-content p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* GBV Form Section */
.gbv-form-section {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.gbv-form-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.gbv-form-intro {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.gbv-report-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gbv-report-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gbv-report-form label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.gbv-report-form .form-hint {
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
}

.gbv-report-form input[type="text"],
.gbv-report-form input[type="tel"],
.gbv-report-form textarea,
.gbv-report-form select {
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.gbv-report-form input[type="text"]:focus,
.gbv-report-form input[type="tel"]:focus,
.gbv-report-form textarea:focus,
.gbv-report-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 31, 38, 0.1);
}

.gbv-report-form textarea {
  resize: vertical;
  min-height: 150px;
  font-family: var(--font-body);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.phone-input-group {
  display: flex;
  gap: 0.5rem;
}

.country-code {
  flex-shrink: 0;
  width: auto;
  min-width: 140px;
}

.required-asterisk {
  color: var(--primary);
  font-weight: 700;
}

.char-counter {
  text-align: right;
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.25rem;
}

.checkbox-group {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 2px solid var(--border-color);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-text {
  flex: 1;
  line-height: 1.6;
  color: var(--text-dark);
}

.consent-full-text {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  width: 100%;
  margin-top: 1rem;
}

/* GBV Sidebar */
.gbv-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gbv-sidebar-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.gbv-sidebar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.gbv-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.emergency-card {
  background: linear-gradient(135deg, rgba(225, 31, 38, 0.1) 0%, rgba(128, 0, 128, 0.1) 100%);
  border: 2px solid var(--primary);
  text-align: center;
}

.emergency-card .gbv-card-icon {
  background: var(--primary);
}

.hotline-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.hotline-number:hover {
  transform: scale(1.05);
}

.hotline-label {
  font-size: 0.9rem;
  color: #666;
}

/* GBV Facts List */
.gbv-facts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gbv-facts-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.gbv-facts-list i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.gbv-facts-list span {
  color: #555;
  line-height: 1.6;
}

/* Support Services */
.support-services {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.support-service {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.support-service i {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.support-service h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.support-service p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Next Steps List */
.next-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.next-steps-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text {
  color: #555;
  line-height: 1.6;
  padding-top: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
  .gbv-hero {
    padding: 3rem 1.5rem;
  }

  .gbv-form-section {
    padding: 2rem 1.5rem;
  }

  .gbv-sidebar-card {
    padding: 1.5rem;
  }

  .gbv-notice {
    flex-direction: column;
    padding: 1.5rem;
  }
}
