 /* Governance Hero */
    .governance-hero {
      background: #004B9B;
      color: white;
      padding: 5px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .governance-hero h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      position: relative;
      z-index: 2;
    }

    .governance-hero .subtitle {
      font-size: 1.2rem;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .governance-content {
      padding: 10px 0;
      background: #f8f9fa;
    }

    .section {
      margin-bottom: 5px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 5px;
    }

    .section-header h2 {
      font-size: 2.5rem;
      color: #004B9B;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .section-header p {
      font-size: 1.1rem;
      color: #333;
      max-width: 1200px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .governance-card {
      background: white;
      border-radius: 16px;
      padding: 10px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      margin-bottom: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .governance-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .board-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 5%;
    }

    .board-member {
      background: white;
      border-radius: 16px;
      padding: 10px;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .board-member:hover {
      transform: translateY(-8px);
    }

    .member-photo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, #004B9B, #0066CC);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2.5rem;
      font-weight: bold;
    }

    .member-name {
      font-size: 1.3rem;
      font-weight: 600;
      color: #004B9B;
      margin-bottom: 8px;
    }

    .member-role {
      color: #004B9B;
      font-weight: 500;
      margin-bottom: 20px;
    }

    .member-description {
      color: #333;
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .org-chart {
      background: white;
      border-radius: 20px;
      padding: 20px;
      box-shadow: 0 15px 35px rgba(0,0,0,0.1);
      margin: 10px 0;
    }

    .chart-level {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
      position: relative;
    }

    .chart-box {
      background: linear-gradient(135deg, #004B9B, #0066CC);
      color: white;
      padding: 20px 30px;
      border-radius: 12px;
      text-align: center;
      min-width: 200px;
      position: relative;
      box-shadow: 0 8px 20px rgba(30, 60, 114, 0.3);
    }

    .chart-box h4 {
      margin: 0 0 5px 0;
      font-size: 1.1rem;
      font-weight: 600;
    }

    .chart-box p {
      margin: 0;
      font-size: 0.9rem;
      opacity: 0.9;
    }

    .chart-connector {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 20px;
      background: #004B9B;
    }

    .chart-level-multi {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 20px;
    }

    .policies-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .policy-card {
      background: white;
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }

    .policy-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

    .policy-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: linear-gradient(135deg, #004B9B, #0066CC);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px;
      color: white;
      font-size: 1.8rem;
    }

    .policy-card h4 {
      color: #004B9B;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .affiliations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 10px;
    }

    .affiliation-card {
      background: white;
      border-radius: 16px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .affiliation-card:hover {
      transform: translateY(-8px);
    }

    .affiliation-logo {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 90px;
      margin-bottom: 15px;
      font-size: 32px;
      font-weight: bold;
    }

    .affiliation-img {
      width: 120px;
      height: auto;
      object-fit: contain;
    }

    .overview-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin: 30px 0;
    }

    .stat-card {
      background: white;
      border-radius: 16px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: #1e3c72;
      margin-bottom: 10px;
    }

    .stat-label {
      color: #666;
      font-weight: 500;
    }

    /* Academic Board Functions */
    .abf-wrapper {
      background: linear-gradient(135deg, #003a7a 0%, #004B9B 50%, #005ec2 100%);
      border-radius: 24px;
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 75, 155, 0.35);
    }

    .abf-wrapper::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 260px; height: 260px;
      border-radius: 50%;
      background: rgba(248,153,29,0.12);
      pointer-events: none;
    }

    .abf-wrapper::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -40px;
      width: 320px; height: 320px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      pointer-events: none;
    }

    .abf-title {
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      z-index: 2;
    }

    .abf-title h3 {
      font-size: 1.9rem;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: 0.5px;
      margin: 0 0 10px;
    }

    .abf-title-underline {
      width: 60px;
      height: 4px;
      background: #F8991D;
      border-radius: 2px;
      margin: 0 auto;
    }

    .abf-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      position: relative;
      z-index: 2;
    }

    .abf-card {
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 16px;
      padding: 28px 24px;
      transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
      cursor: default;
    }

    .abf-card:hover {
      transform: translateY(-6px);
      background: rgba(255,255,255,0.15);
      box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    }

    .abf-icon-wrap {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: linear-gradient(135deg, #F8991D, #e07d00);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      box-shadow: 0 6px 16px rgba(248,153,29,0.4);
    }

    .abf-icon-wrap .material-icons {
      font-size: 28px;
      color: #fff;
    }

    .abf-card h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0 0 10px;
      letter-spacing: 0.3px;
    }

    .abf-card p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.78);
      line-height: 1.65;
      margin: 0;
    }

/* ============================================
   MOBILE RESPONSIVE - stylegovernance.css
   ============================================ */

@media (max-width: 768px) {

  /* Hero */
  .governance-hero {
    padding: 20px 15px;
  }

  .governance-hero h1 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .governance-hero .subtitle {
    font-size: 0.88rem;
    padding: 0 10px;
  }

  /* Section headers */
  .section-header {
    padding: 0 15px;
    margin-bottom: 16px;
  }

  .section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  /* Board grid → single column */
  .board-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
  }

  .board-member {
    padding: 20px 15px;
  }

  .member-photo {
    width: 90px;
    height: 90px;
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .member-name {
    font-size: 1.1rem;
  }

  .member-description {
    font-size: 0.88rem;
  }

  /* Org chart */
  .org-chart {
    padding: 16px 10px;
    overflow-x: auto;
  }

  .chart-box {
    padding: 14px 16px;
    min-width: 140px;
  }

  .chart-box h4 {
    font-size: 0.9rem;
  }

  .chart-box p {
    font-size: 0.78rem;
  }

  .chart-level-multi {
    gap: 12px;
  }

  /* Policies grid → single column */
  .policies-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
  }

  .policy-card {
    padding: 20px 15px;
  }

  .policy-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .policy-card h4 {
    font-size: 1rem;
  }

  /* Affiliations → single column */
  .affiliations-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .affiliation-card {
    padding: 15px 12px;
  }

  .affiliation-logo {
    height: 60px;
    font-size: 24px;
  }

  .affiliation-img {
    width: 90px;
  }

  /* Stats grid → 2 columns */
  .overview-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
  }

  .stat-card {
    padding: 20px 12px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  /* ABF Section */
  .abf-wrapper {
    padding: 28px 16px;
    border-radius: 16px;
  }

  .abf-title h3 {
    font-size: 1.4rem;
  }

  .abf-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .abf-card {
    padding: 20px 16px;
  }

  .abf-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .abf-icon-wrap .material-icons {
    font-size: 22px;
  }

  .abf-card h4 {
    font-size: 0.95rem;
  }

  .abf-card p {
    font-size: 0.85rem;
  }

  /* Governance card */
  .governance-card {
    padding: 16px;
    border-radius: 12px;
  }

  /* CTA / contact section */
  .final-cta,
  .contact-cta {
    padding: 28px 16px;
  }

  .final-cta h2,
  .contact-cta h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .final-cta p,
  .contact-cta p {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }
}

@media (max-width: 480px) {

  .governance-hero h1 {
    font-size: 1.25rem;
  }

  .governance-hero .subtitle {
    font-size: 0.82rem;
  }

  .section-header h2 {
    font-size: 1.25rem;
  }

  .section-header p {
    font-size: 0.82rem;
  }

  /* Stats → single column */
  .overview-stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  /* Affiliations → single column */
  .affiliations-grid {
    grid-template-columns: 1fr;
  }

  .abf-title h3 {
    font-size: 1.2rem;
  }

  .final-cta h2,
  .contact-cta h2 {
    font-size: 1.1rem;
  }
}
