    .team-section {
      text-align: center;
      padding: 80px 20px;
    }
    .team-section h2 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .team-section p {
      color: #666;
      margin-bottom: 50px;
      font-size: 1.1rem;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .team-card {
      background: #fff;
      padding: 30px 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .team-card .avatar {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      border-radius: 50%;
      background: linear-gradient(135deg, #a0c4ff, #bdb2ff);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.2rem;
      color: #2a2aef;
    }

    .team-card h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .team-card p {
      font-size: 0.95rem;
      color: #2a2aef;
      font-weight: 500;
    }