
    body {
      min-height: 100vh;
      padding-top: 80px;
    }

    .about-section {
      padding: 80px 20px;
    }

    .team-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .team-card {
      flex: 0 0 calc(33.333% - 30px);
      min-width: 280px;
      background: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .team-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

    .team-photo {
      width: 100%;
      height: 300px;
      overflow: hidden;
      margin-bottom: 20px;
    }

    .team-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .team-info {
      padding: 0 20px;
      text-align: center;
    }

    .testimonial-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .testimonial-card {
      flex: 0 0 calc(50% - 30px);
      min-width: 280px;
      background: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      padding: 30px;
      display: flex;
      flex-direction: column;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .testimonial-photo {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .testimonial-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .gallery-item {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      height: 250px;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .achievements-list {
      list-style: none;
      padding-left: 0;
      margin-top: 30px;
    }

    .achievements-list li {
      position: relative;
      padding-left: 30px;
      margin-bottom: 20px;
    }

    .achievements-list li:before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: #2563eb;
      font-weight: bold;
    }

    .cta-section {
      text-align: center;
      padding: 80px 20px;
      background-color: #f9fafb;
    }

    @media (max-width: 768px) {

      .team-card,
      .testimonial-card {
        flex: 0 0 100%;
      }

      .gallery {
        grid-template-columns: 1fr;
      }
    }
