body {
      font-family: 'Segoe UI', sans-serif;
      background: #f8fafc;
      padding: 40px 20px;
      color: #1f2937;
    }

    .team-section {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .team-section h2 {
      font-size: 32px;
      margin-bottom: 40px;
      color: #880588;
    }

    .team-member {
      display: flex;
      align-items: center;
      background: #ffffff;
      border-radius: 10px;
      margin-bottom: 20px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .team-member:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }

    .team-photo {
      flex: 0 0 100px;
      height: 100px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 20px;
    }

    .team-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .member-info {
      flex: 1;
      text-align: left;
    }

    .member-info h3 {
      margin: 0;
      font-size: 18px;
      color: #111827;
    }

    .member-info p {
      margin: 4px 0 8px;
      font-size: 14px;
      color: #6b7280;
    }

    .social-links {
      display: none;
      gap: 12px;
    }

    .team-member:hover .social-links {
      display: flex;
    }

    .social-links a {
      color: #880588;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.2s;
    }

    .social-links a:hover {
      color: #880588;
    }

    @media screen and (max-width: 600px) {
      .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .member-info {
        text-align: center;
      }

      .team-photo {
        margin-right: 0;
        margin-bottom: 10px;
      }
    }