

  
.team h2{
    text-align: center;
    margin-bottom: 20px;
}
.team-section {
    margin-top: -10px;
    margin-bottom: 30px;
    padding: 72px 20px;
    text-align: center;
    
  }
  
  .team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
  }
  
  .team-member {
    max-width: 200px;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    background: #000;
  }
  
  .team-member h2 {
    font-size: 1.2rem;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #222;
  }
  
  .team-member .title {
    font-size: 1rem;
    color: #6c757d; /* Light gray */
    margin-top: 0;
  }
  .contact-section {
    background-color: var(--primary-color); /* Deep professional blue */
    width: 100%;   
    
    text-align: center;
    padding: 72px 20px 72px 20px; /* top right bottom left */
    text-align: center;
    margin: 0; /* make sure there's no margin */
  }
  
  .contact-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .contact-container h2 {
    margin: 0;
    font-size: 32px;         /* Headline: strong but not overwhelming */
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
  }
  
  .contact-container p {
    font-size: 20px;         /* Supporting line */
    color: #cbd5e1;
    margin-bottom: 18px;
    font-weight: 400;
  }
  
  .contact-email {
    font-size: 20px;         /* Email is clear, clean, clickable */
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
  }
  
  .contact-email:hover {
    color: var(--highlight-color); /* Lighter blue on hover */
  }
  
  @media (max-width: 768px) {
    .contact-container h2 {
        
        font-size: 28px;         /* Headline: strong but not overwhelming */
       
      }
      
      .contact-container p {
        font-size: 18px;         /* Supporting line */
        
      }
      
      .contact-email {
        font-size: 18px;         /* Email is clear, clean, clickable */
        
      }
  }