    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      line-height: 1.6;
    }

    .leadership-page {
      background: #ffffff;
      padding: 60px 0;
    }
    
    .page-title{
      text-align: center;
      margin: 0;
      font-family: "Playfair Display", serif;
      font-size: 44px;
      /* font-weight: 600; */
      letter-spacing: -0.5px;
    }

    .h1-contact {
      margin: 0;
      font-size: clamp(2rem, 4.6vw, 3.9rem);
      line-height: 1.1;
    }

    .page-subtitle{
      text-align: center;
      margin: 10px auto 0;
      max-width: 1000px;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.8;
    }

    .page-title-section {
      text-align: center;
      max-width: 1200px;
      margin: 0 auto 50px;
      padding: 0 20px;
    }
    
    .main-title {
      font-size: 42px;
      font-weight: 300;
      color: #333;
      margin-bottom: 30px;
      letter-spacing: 1px;
    }
    
    .title-lowercase {
      text-transform: lowercase;
      font-weight: 700;
    }
    
    .intro-text {
      font-size: 17px;
      line-height: 1.8;
      color: #555;
      text-align: left;
      margin-bottom: 50px;
    }
    
    .section-heading {
      font-size: 28px;
      font-weight: 600;
      color: #2a5f7f;
      margin: 60px 0 40px;
      padding-bottom: 12px;
      border-bottom: 3px solid #2a5f7f;
      text-align: center;
    }

    .subtitle-text {
      font-size: 18px;
      color: #666;
      margin-bottom: 40px;
      font-style: italic;
      text-align: center;
    }
    
    /* Board of Trustees - 2 column grid */
    .trustees-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin-bottom: 50px;
    }

    .trustee-card {
      background: #ffffff;
      padding: 25px;
      border-radius: 8px;
      border: 2px solid #2a5f7f;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .trustee-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .trustee-card .person-name {
      text-align: center;
    }

    .trustee-card .person-bio {
      text-align: center;
    }

    /* Mentor Section - Centered */
    .mentor-section {
      max-width: 800px;
      margin: 0 auto 60px;
      text-align: center;
    }

    .mentor-section .profile-image {
      display: block;
      margin: 0 auto 20px;
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 50%;
    }

    .mentor-section .person-bio {
      text-align: left;
    }

    /* Management Team - 3 column grid */
    .management-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 50px;
      align-items: start;
    }

    .team-member-card {
      background: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: visible;
    }

    .team-member-card:hover {
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .team-member-card .profile-image {
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 50%;
      margin: 0 auto 15px;
      display: block;
    }

    .team-member-card .person-bio {
      display: none;
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      right: 0;
      background: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      z-index: 100;
    }

    .team-member-card.expanded {
      z-index: 101;
    }

    .team-member-card.expanded .person-bio {
      display: block;
    }

    .expand-btn {
      background: #2a5f7f;
      color: white;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 15px auto 0;
      transition: all 0.3s ease;
      line-height: 1;
    }

    .expand-btn:hover {
      background: #1a4a5f;
      transform: scale(1.1);
    }

    .team-member-card.expanded .expand-btn {
      transform: rotate(45deg);
    }
    
    .person-profile {
      margin-bottom: 50px;
      padding-bottom: 40px;
    }
    
    .profile-image {
      max-width: 280px;
      width: 100%;
      height: auto;
      border-radius: 4px;
      margin-bottom: 20px;
    }
    
    .person-name {
      font-size: 24px;
      font-weight: 700;
      color: #222;
      margin: 15px 0;
    }
    
    .person-bio {
      font-size: 16px;
      line-height: 1.8;
      color: #444;
    }
    
    .person-bio p {
      margin-bottom: 15px;
    }

    .links-section {
      margin-top: 60px;
      padding-top: 40px;
      border-top: 1px solid #e0e0e0;
    }

    .links-heading {
      font-size: 24px;
      font-weight: 600;
      color: #2a5f7f;
      margin-bottom: 30px;
    }

    .links-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 40px;
    }

    .link-item {
      text-decoration: none;
    }

    .link-image {
      width: 100%;
      height: 150px;
      object-fit: contain;
      border-radius: 4px;
      margin-bottom: 15px;
    }

    .link-title {
      font-size: 20px;
      font-weight: 600;
      color: #2a5f7f;
      margin-bottom: 5px;
      text-align: center;
    }

    .link-item {
      text-align: center;
    }

        /* ================= CTA STRIP ================= */
    .cta-strip{
      margin-top: 22px;
      background: #F4ECE3;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 18px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .cta-strip h3{
      margin: 0;
      font-size: 13px;
      font-weight: 800;
      color: #2a2522;
    }

    .cta-strip p{
      margin: 6px 0 0;
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
      max-width: 620px;
      
    }

    .cta-btn{
      white-space: nowrap;
      background: var(--brown);
      color: #fff;
      border-radius: 999px;
      padding: 10px 16px;
      font-weight: 800;
      font-size: 15px;
      box-shadow: 0 14px 26px rgba(123,90,76,.22);
    }
    .cta-btn:hover{ background: var(--brown2); transform: translateY(-1px); }
    
    @media (max-width: 768px) {
      .trustees-grid,
      .management-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
      }
      .main-title {
        font-size: 32px;
      }
      
      .section-heading {
        font-size: 24px;
      }
      
      .person-name {
        font-size: 22px;
      }
      
      .profile-image {
        max-width: 100%;
      }

      .mentor-section {
        padding: 0 20px;
      }

      .links-section {
        padding: 40px 20px 20px;
      }

      .links-grid {
        grid-template-columns: 1fr;
      }
    }
