.team-section {
    background: #d3d3d4;
    padding: 80px 20px;
  }
  :root {
    --primary: #001f3f;
   
    --accent: #2DD4BF;
    --light: #f0f4f8;
    --white: #ffffff;
  }
 
  
   
  .team-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
  }
  
  .team-member {
    background: white;
    border-radius: 10px;
    padding: 30px;
    width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .team-member:hover {
    transform: translateY(-10px);
  }
  .team-member .fa-user{
    font-size: ;
 }
  
  .team-member h3 {
    color: #001f3f;
    margin-bottom: 5px;
  }
  
  .team-member p {
    color: #005f99;
    font-weight: 600;
  }