/* Core Team Section Styling */
.core-team-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.core-team-section h2 {
  font-family: 'Georgia', serif;
  font-size: 2.5rem;
  color: #b22222;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  justify-items: center;
}

.team-member {
  text-align: center;
  max-width: 200px;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}
.team-member img:hover {
transform: scale(1.1)
}
.team-member h3 {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #333;
}

.team-member p {
  font-size: 1rem;
  color: #777;
  margin-top: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .team-member img {
    width: 120px;
    height: 120px;
  }

  .team-member h3 {
    font-size: 1.1rem;
  }

  .team-member p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .team-member img {
    width: 100px;
    height: 100px;
  }

  .team-member h3 {
    font-size: 1rem;
  }

  .team-member p {
    font-size: 0.8rem;
  }
}
