:root {
      --heading: #002C3E;
      --subheading: #0B74B5;   /* Lighting accent */
      --text: #000000;
      --pointer: #142d43;
      --border: #dde2ea;
      --shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
      --radius: 14px;
      --card-bg: #E5F3FF;      /* bluish card background */
      --muted: #6b7280;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #ffffff;
      color: var(--text);
      line-height: 1.5;
    }

    /* MAIN WRAPPER – same as other departments */
    .page-wrap {
      max-width: 1120px;
      margin: 0 auto;
      padding: 2.2rem 1.4rem 2.8rem;

    }

    @media (max-width: 1200px) {
      .page-wrap {
        padding-left: 2rem;
        padding-right: 2rem;
      }
    }

    /* HEADER */
    .page-title {
      margin-bottom: 1.4rem;
    }

    .page-title h2 {
      font-family: "Merriweather", "Playfair Display", serif;
      font-size: clamp(2rem, 2.4vw, 2.2rem);
      color: var(--heading);
      margin-bottom: 0.2rem;
    }

    .page-title span {
      font-size: 0.95rem;
      color: var(--muted);
    }

    /* GENERIC CARD */
    .card {
      background: var(--card-bg);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: 0.8rem 0.9rem;
      box-shadow: var(--shadow);
      margin-bottom: 0.9rem;
    }

    h4.section-heading {
      font-family: "Merriweather", "Playfair Display", serif;
      font-size: 1.02rem;
      color: var(--subheading);
      font-weight: 600;
      margin-bottom: 0.35rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .heading-icon {
      width: 20px;
      height: 20px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      color: var(--pointer);
    }

    ul {
      margin-left: 1.1rem;
      list-style: disc;
    }

    ul li {
      font-size: 0.88rem;
      margin-bottom: 0.16rem;
    }

    /* RESPONSIBILITIES LIST */
    .core-list {
      list-style: none;
      margin-left: 0;
    }

    .core-item {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      font-size: 0.88rem;
      margin-bottom: 0.2rem;
    }

    .core-icon {
      flex-shrink: 0;
      margin-top: 0.05rem;
      color: #15803d;
      font-size: 0.8rem;
    }

    /* IMAGE SLIDER */
    .slider-wrapper {
      position: relative;
      width: 100%;
      max-width: 640px;
      aspect-ratio: 438 / 263;
      margin-top: 0.3rem;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
    }

    .slider {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.4s ease-in-out;
    }

    .slide.active {
      opacity: 1;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .slide-caption {
      position: absolute;
      left: 0.6rem;
      bottom: 0.5rem;
      background: rgba(0, 0, 0, 0.55);
      color: #f9fafb;
      padding: 0.2rem 0.5rem;
      border-radius: 999px;
      font-size: 0.74rem;
    }

    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 28px;
      height: 28px;
      border-radius: 999px;
      border: none;
      background: rgba(15, 23, 42, 0.75);
      color: #ffffff;
      font-size: 0.7rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .slider-btn.prev { left: 8px; }
    .slider-btn.next { right: 8px; }

    .slider-dots {
      position: absolute;
      right: 8px;
      top: 8px;
      display: flex;
      gap: 4px;
    }

    .slider-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      border: 1px solid rgba(248, 250, 252, 0.7);
      background: rgba(15, 23, 42, 0.4);
    }

    .slider-dot.active {
      background: #facc15;
    }

    /* SERVICES GRID (2x2) */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.6rem;
    }

    @media (max-width: 640px) {
      .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 480px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
    }

    .service-item {
      background: #ffffff;
      border-radius: 10px;
      border: 1px solid var(--border);
      padding: 0.6rem 0.65rem;
      min-height: 72px;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .service-item:hover {
      transform: translateY(-3px) scale(1.04);
      box-shadow: 0 16px 28px rgba(15, 23, 42, 0.12);
    }

    .service-title {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--heading);
      margin-bottom: 0.05rem;
    }

    .service-text {
      font-size: 0.8rem;
      color: var(--muted);
    }

    /* STRUCTURE LIST */
    .structure-list {
      list-style: none;
      margin-left: 0;
      margin-top: 0.15rem;
    }

    .structure-item {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.86rem;
      margin-bottom: 0.2rem;
    }

    .structure-icon {
      width: 16px;
      height: 16px;
      border-radius: 999px;
      border: 1px solid #cbd5e1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.6rem;
      color: var(--pointer);
      background: #f3f4f6;
    }

    /* OFFICERS TABLE */
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 0.25rem;
      font-size: 0.86rem;
    }

    thead {
      background: #ecf5ff;
    }

    th, td {
      padding: 0.4rem 0.5rem;
      text-align: left;
      border-bottom: 1px solid #e5e7eb;
    }

    th {
      color: var(--heading);
      font-weight: 600;
      font-size: 0.84rem;
    }

    tbody tr:nth-child(even) {
      background: #f9fafb;
    }

    /* NOTICE STRIP */
    .notice-strip {
      border-radius: 10px;
      border: 1px dashed #bfdbfe;
      background: #eff6ff;
      padding: 0.5rem 0.7rem;
      font-size: 0.86rem;
      color: var(--pointer);
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: 0.2rem;
    }

    .notice-icon {
      width: 20px;
      height: 20px;
      border-radius: 999px;
      background: #dbeafe;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
    }