:root {
      --heading: #002C3E;
      --subheading: #0B74B5;
      --text: #000000;
      --pointer: #142d43;
      --border: #dde2ea;
      --shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
      --radius: 14px;
      --card-bg: #E5F3FF;
      --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 layout as other pages */
    .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;
      display: flex;
      align-items: center;
      gap: 0.45rem;
    }

    .page-title span {
      font-size: 0.95rem;
      color: var(--muted);
    }

    .title-icon-circle {
      display:inline-flex;
      width:28px;
      height:28px;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      background:#E5F3FF;
      border:1px solid #cfe4ff;
    }

    /* CARD */
    .card {
      background: var(--card-bg);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: 0.85rem 0.95rem;
      box-shadow: var(--shadow);
      margin-bottom: 0.9rem;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .card:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
    }

    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);
    }

    p {
      font-size: 0.9rem;
      color: var(--text);
    }

    ul {
      margin-left: 1.1rem;
      list-style: disc;
    }

    ul li {
      font-size: 0.88rem;
      margin-bottom: 0.16rem;
    }

    /* OFFICERS TABLE */
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 0.25rem;
      font-size: 0.86rem;
      background:#ffffff;
    }

    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;
    }