    /* Team Page Specific Styles */
    .team-hero {
      background: linear-gradient(135deg, #2c5e1e, #1a3a10);
      color: white;
      padding: 4rem 2rem;
      text-align: center;
      border-radius: 0 0 50px 50px;
      margin-bottom: 3rem;
    }
    .team-hero h1 {
      color: white;
      margin-bottom: 1rem;
      font-size: 2.5rem;
    }
    .team-hero p {
      font-size: 1.1rem;
      opacity: 0.9;
    }

    .team-grid-page {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem 3rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
      gap: 2rem;
    }

    .team-card-page {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      text-align: center;
      padding: 2rem;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(100, 128, 60, 0.15);
    }

    .team-card-page:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
      border-color: #e87c2a;
    }

    .team-avatar-page {
      margin-bottom: 1.5rem;
    }

    .team-avatar-page i {
      font-size: 100px;
      color: #e87c2a;
    }

    .team-card-page h3 {
      font-size: 1.4rem;
      color: #2c5e1e;
      margin-bottom: 0.5rem;
    }

    .team-position-page {
      color: #e87c2a;
      font-weight: 600;
      margin-bottom: 1rem;
      font-size: 0.9rem;
    }

    .team-bio-page {
      color: #666;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      font-size: 0.9rem;
    }

    .team-social-page {
      display: flex;
      gap: 1rem;
      justify-content: center;
    }

    .team-social-page a {
      width: 35px;
      height: 35px;
      background: #f0f4ea;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2c5e1e;
      transition: all 0.3s;
      text-decoration: none;
    }

    .team-social-page a:hover {
      background: #e87c2a;
      color: white;
      transform: translateY(-3px);
    }

    @media (max-width: 768px) {
      .team-grid-page {
        grid-template-columns: 1fr;
        padding: 0 1rem 2rem;
      }
      .team-hero h1 {
        font-size: 1.8rem;
      }
    }