 .about-hero {
      background: linear-gradient(135deg, rgba(0, 170, 193, 0.9), rgba(46, 46, 56, 0.8)), url('../images/about-us-banner.jpg') no-repeat center center / cover;
      height: 60vh;
      display: flex;
      align-items: center;
      color: white;
      text-align: center;
    }

    .stats-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      text-align: center;
    }

    .stat-card {
      background: white;
      padding: 40px 20px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-10px);
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }

    .stat-label {
      font-size: 1.1rem;
      color: var(--text-color);
      font-weight: 500;
    }

    .team-section {
      padding: 80px 0;
      background: white;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      margin-top: 50px;
    }

    .team-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      position: relative;
    }

    .team-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

    .team-image {
      height: 300px;
      overflow: hidden;
      position: relative;
    }

    .team-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .team-card:hover .team-image img {
      transform: scale(1.1);
    }

    .team-info {
      padding: 30px;
      text-align: center;
    }

    .team-name {
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--primary-color);
      margin-bottom: 5px;
    }

    .team-role {
      color: var(--secondary-color);
      font-weight: 500;
      margin-bottom: 15px;
    }

    .team-bio {
      color: var(--text-light);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .team-social {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .team-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--secondary-color);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .team-social a:hover {
      background: var(--accent-color);
      transform: translateY(-3px);
    }

    .values-section {
      padding: 80px 0;
      background: var(--primary-color);
      color: white;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      margin-top: 50px;
    }

    .value-card {
      text-align: center;
      padding: 40px 20px;
    }

    .value-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--accent-color);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 2rem;
    }

    .value-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .value-description {
      opacity: 0.9;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .about-hero {
        height: 50vh;
      }
      
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
      
      .team-grid {
        grid-template-columns: 1fr;
      }
      
      .stat-number {
        font-size: 2rem;
      }
    }