<style>
    :root {
      --primary-color: #145A32;
      --secondary-color: #1D8348;
      --accent-color: #F1C40F;
      --light-bg: #f8f9fa;
    }
    
    /* Uniform Image Styles for Board Members */
.board-img-wrapper {
  width: 150px; /* Set your desired size */
  height: 150px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px; /* Optional: Rounded corners */
  border: 3px solid var(--primary-color);
}

.board-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This crops the image to fill the box without stretching */
  object-position: top center; /* Focuses on the face */
}

.board-card {
  height: 100%;
  padding: 15px;
  transition: transform 0.3s ease;
}

.board-card:hover {
  transform: translateY(-5px);
}
    body {
      font-family: 'Inter', sans-serif;
      background-color: #f4f6f8;
      color: #333;
      line-height: 1.6;
    }
    
    .header {
      background: linear-gradient(135deg, rgba(20,90,50,0.95) 0%, rgba(29,131,72,0.9) 100%), url('https://images.unsplash.com/photo-1601597111158-2fceff292cdc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
      color: white;
      padding: 120px 0 100px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .header::before {
      content: "";
      position: absolute;
      bottom: -50px;
      left: 0;
      right: 0;
      height: 100px;
      background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="white"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="white"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="white"/></svg>');
      background-size: cover;
      z-index: 1;
    }
    
    .header-content {
      position: relative;
      z-index: 2;
    }
    
    .section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 50px;
      font-weight: 600;
      font-size: 32px;
      color: var(--primary-color);
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      width: 60%;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
      bottom: -10px;
      left: 20%;
      border-radius: 2px;
    }
    
    .section {
      padding: 80px 0;
    }
    
    .feature-icon {
      font-size: 40px;
      color: var(--primary-color);
      margin-bottom: 20px;
    }
    
    .card-style {
      border: none;
      border-radius: 12px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
      padding: 30px;
      height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: white;
    }
    
    .card-style:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    }
    
    .card-style h5 {
      color: var(--primary-color);
      font-weight: 600;
      margin-bottom: 15px;
    }
    
    footer {
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
      color: white;
      padding: 60px 0 30px;
      position: relative;
    }
    
    footer::before {
      content: "";
      position: absolute;
      top: -50px;
      left: 0;
      right: 0;
      height: 100px;
      background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23145A32"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23145A32"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23145A32"/></svg>');
      background-size: cover;
      z-index: 1;
    }
    
    .contact-form input, 
    .contact-form textarea,
    .contact-form select {
      margin-bottom: 20px;
      border-radius: 8px;
      padding: 12px 15px;
      border: 1px solid #ddd;
    }
    
    .contact-form input:focus, 
    .contact-form textarea:focus,
    .contact-form select:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.25rem rgba(20,90,50,0.25);
    }
    
    .btn-success {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
      padding: 12px 30px;
      font-weight: 500;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    
    .btn-success:hover {
      background-color: var(--secondary-color);
      border-color: var(--secondary-color);
      transform: translateY(-2px);
    }
    
    .nav-pills .nav-link.active {
      background-color: var(--primary-color);
    }
    
    .nav-pills .nav-link {
      color: var(--primary-color);
      font-weight: 500;
    }
    
    .stat-number {
      font-size: 48px;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 5px;
    }
    
    .stat-label {
      font-size: 16px;
      color: #666;
    }
    
    .timeline {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .timeline::after {
      content: '';
      position: absolute;
      width: 6px;
      background-color: var(--primary-color);
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -3px;
      border-radius: 3px;
    }
    
    .timeline-item {
      padding: 10px 40px;
      position: relative;
      width: 50%;
      box-sizing: border-box;
    }
    
    .timeline-item::after {
      content: '';
      position: absolute;
      width: 25px;
      height: 25px;
      right: -12px;
      background-color: white;
      border: 4px solid var(--primary-color);
      top: 15px;
      border-radius: 50%;
      z-index: 1;
    }
    
    .left {
      left: 0;
    }
    
    .right {
      left: 50%;
    }
    
    .right::after {
      left: -12px;
    }
    
    .timeline-content {
      padding: 20px 30px;
      background-color: white;
      position: relative;
      border-radius: 6px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .testimonial-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      margin: 15px;
      position: relative;
    }
    
    .testimonial-card::before {
      content: '"';
      font-size: 80px;
      position: absolute;
      top: 10px;
      left: 20px;
      color: rgba(20,90,50,0.1);
      font-family: serif;
      line-height: 1;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
      margin-top: 20px;
    }
    
    .testimonial-author img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
      border: 3px solid var(--primary-color);
    }
    
    .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgba(255,255,255,0.2);
      color: white;
      margin-right: 10px;
      transition: all 0.3s ease;
    }
    
    .social-icon:hover {
      background-color: var(--accent-color);
      color: #333;
      transform: translateY(-3px);
    }
    
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: var(--primary-color);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 99;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      background-color: var(--secondary-color);
      transform: translateY(-3px);
    }
    
    @media screen and (max-width: 768px) {
      .header {
        padding: 80px 0 60px;
      }
      
      .section {
        padding: 60px 0;
      }
      
      .section-title {
        font-size: 28px;
      }
      
      .timeline::after {
        left: 31px;
      }
      
      .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
      }
      
      .timeline-item::after {
        left: 18px;
      }
      
      .left::after, .right::after {
        left: 18px;
      }
      
      .right {
        left: 0;
      }
    }
  </style>