
  :root {
  --bg-main: #F3EAFE;          /* soft lavender background */
  --card-bg: #F3EAFE;          /* same as bg for hero */
  --heading: #7C3AED;          /* strong purple */
  --accent: #8B5CF6;           /* buttons, arrows */
  --accent-soft: #EDE9FE;      /* icon circles */
  --text-main: #4C1D95;        /* deep readable purple */
  --text-muted: #6B21A8;       /* secondary text */
  --border: #DDD6FE;
    --shadow: 0 12px 40px rgba(139, 92, 246, 0.12);
  --radius: 24px;
}


    * {
      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 – unified layout */
    .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;
    }

    .info-section {
  margin-top: 20px;
}

.info-wrapper {
  background: #e6f2ff;           /* light blue like your current box */
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.info-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #004c97;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.info-title i {
  font-size: 1rem;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.infra-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.infra-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 76, 151, 0.06);
  margin-bottom: 4px;
}

.infra-icon i {
  font-size: 0.9rem;
  color: #004c97;
}

.infra-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #002c3e;
  margin: 0;
}

.infra-item p {
  font-size: 0.86rem;
  color: #374151;
  margin: 0;
  line-height: 1.4;
}


    /* 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;
    }
  