/* Hero Banner */
    .team-hero {
      position: relative;
      height: 40vh;
      background: url("images/team-banner.jpg") center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }
    .team-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.5);
    }
    .team-hero h1 {
      position: relative;
      z-index: 1;
      font-size: 2.2rem;
    }

    /* Team Section */
    .team-section {
      max-width: 1100px;
      margin: 40px auto;
      padding: 20px;
      text-align: center;
    }
    .team-section h2 {
      color: #a80000;
      margin-bottom: 10px;
    }
    .team-section p {
      margin-bottom: 40px;
      font-size: 1.1rem;
    }

    /* Team Cards */
    .team-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .team-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      width: 250px;
      padding: 20px;
      text-align: center;
      transition: transform 0.3s;
    }
    .team-card:hover { transform: translateY(-8px); }
    .team-card img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
    }
    .team-card h3 { margin: 10px 0 5px; color: #a80000; }
    .team-card p { margin: 0; font-size: 0.95rem; color: #555; }

    @media (max-width: 768px) {
      .team-card { width: 80%; }
      .team-hero h1 { font-size: 1.8rem; }
    }