
    /* ---- NAVBAR (identical to about.html) ---- */
    .hamburger {
      display: none;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    @media (max-width: 900px) {
      .nav-links {
        display: flex;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 32px;
        gap: 16px;
        border-top: 1px solid var(--border);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: 0.3s ease;
      }

      .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav-links li {
        width: 100%;
      }

      .nav-links a {
        display: block;
        width: 100%;
        padding: 10px 0;
      }

      .nav-emergency {
        display: none;
      }

      .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
      }

      .hamburger span {
        width: 24px;
        height: 2px;
        background: var(--text-dark);
        display: block;
      }
    }

    /* Page Hero */
    .page-hero {
      background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 55%, #C05078 100%);
      padding: 100px 32px 80px;
      text-align: center;
      color: white;
      position: relative;
    }

    .page-hero-breadcrumb {
      margin-bottom: 20px;
      font-size: 0.85rem;
      opacity: 0.8;
    }

    .page-hero-breadcrumb a {
      color: white;
      text-decoration: none;
    }

    .page-hero-breadcrumb span {
      margin: 0 8px;
    }

    .page-hero h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      margin-bottom: 16px;
      font-weight: 700;
    }

    .page-hero p {
      font-size: 1.1rem;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
    }

    /* News & Events Grid */
    .news-section {
      padding: 80px 32px;
      background: var(--off-white);
    }

    .news-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-sub {
      color: var(--maroon);
      font-size: 0.85rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      color: var(--maroon-dark);
      margin-bottom: 16px;
    }

    .divider {
      width: 60px;
      height: 3px;
      background: var(--maroon-light);
      margin: 0 auto 20px;
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
      gap: 40px;
      margin-top: 20px;
    }

    .news-card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
    }

    .news-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      border-color: var(--rose);
    }

    .news-image {
      width: 100%;
      height: 240px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--rose-pale), var(--off-white));
    }

    .news-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .news-card:hover .news-image img {
      transform: scale(1.05);
    }

    .news-date {
      display: inline-block;
      background: var(--maroon);
      color: white;
      font-size: 0.7rem;
      padding: 4px 12px;
      border-radius: 20px;
      margin: 16px 20px 0;
    }

    .news-content {
      padding: 20px 24px 24px;
      flex: 1;
    }

    .news-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--maroon-dark);
      line-height: 1.4;
      margin-bottom: 12px;
    }

    .news-excerpt {
      color: var(--text-mid);
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .read-more-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--maroon);
      font-weight: 600;
      font-size: 0.85rem;
      text-decoration: none;
      transition: gap 0.2s ease;
    }

    .read-more-link:hover {
      gap: 12px;
    }

    /* Modal Styles for News Details */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      z-index: 1000;
      justify-content: center;
      align-items: center;
      backdrop-filter: blur(5px);
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      max-width: 800px;
      width: 90%;
      border-radius: 28px;
      overflow: hidden;
      animation: modalFadeIn 0.3s ease;
      max-height: 85vh;
      display: flex;
      flex-direction: column;
    }

    @keyframes modalFadeIn {
      from {
        opacity: 0;
        transform: scale(0.95);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .modal-header {
      background: var(--maroon);
      color: white;
      padding: 20px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-shrink: 0;
    }

    .modal-header h3 {
      font-size: 1.3rem;
      margin: 0;
    }

    .modal-close {
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      transition: opacity 0.2s;
    }

    .modal-close:hover {
      opacity: 0.7;
    }

    .modal-body {
      padding: 24px;
      overflow-y: auto;
      flex: 1;
    }

    .modal-image {
      width: 100%;
      max-height: 300px;
      object-fit: cover;
      border-radius: 16px;
      margin-bottom: 20px;
    }

    .modal-date {
      color: var(--maroon);
      font-size: 0.8rem;
      margin-bottom: 12px;
      display: inline-block;
      background: var(--rose-pale);
      padding: 4px 12px;
      border-radius: 20px;
    }

    .modal-body h2 {
      font-size: 1.4rem;
      color: var(--maroon-dark);
      margin-bottom: 16px;
    }

    .modal-body p {
      color: var(--text-mid);
      line-height: 1.7;
      margin-bottom: 16px;
      font-size: 0.95rem;
    }

    .modal-footer {
      padding: 16px 24px;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 12px;
      justify-content: flex-end;
      flex-shrink: 0;
    }

    .btn-modal {
      padding: 10px 24px;
      border-radius: 40px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.85rem;
    }

    .btn-modal-primary {
      background: var(--maroon);
      color: white;
      text-decoration: none;
      display: inline-block;
    }

    .btn-modal-secondary {
      background: var(--off-white);
      color: var(--text-dark);
      border: 1px solid var(--border);
    }

    @media (max-width: 768px) {
      .news-section {
        padding: 60px 20px;
      }

      .news-grid {
        grid-template-columns: 1fr;
      }
    }
  