body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #1e2235;
  line-height: 1.7;
}


.team-hero-overlay h1 {
  font-size: 4rem;
  font-weight: bold;
  margin: 0;
}

.team-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-member-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 260px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.team-member-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-member-card h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.team-member-card p {
  font-size: 0.95rem;
  color: #555;
}




.founder-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.founder-photo img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}

.founder-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.founder-info p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 15px;
}

.founder-info a {
  font-size: 1rem;
  color: #0077b5;
  text-decoration: none;
  font-weight: bold;
}


/* Founder Card - Mobile Responsive */
@media (max-width: 768px) {
  .founder-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px;
  }

  .founder-photo img {
    width: 140px;
    height: 140px;
  }

  .founder-info h3 {
    font-size: 1.5rem;
  }

  .founder-info p {
    font-size: 1rem;
  }

  .founder-info a {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .founder-card {
    padding: 15px;
    gap: 15px;
  }

  .founder-photo img {
    width: 120px;
    height: 120px;
  }

  .founder-info h3 {
    font-size: 1.3rem;
  }

  .founder-info p {
    font-size: 0.9rem;
  }

  .founder-info a {
    font-size: 0.85rem;
  }
}
