/* Base styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: #2c3e50;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

/* Custom hero section for homepage */
.hero-section {
  background-color: #f5f7fa;
  padding: 3rem 0;
  margin-bottom: 2rem;
  border-radius: 5px;
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #5a6268;
}

/* Team member cards */
.team-card {
  border: 1px solid #e9ecef;
  border-radius: 5px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Button styles */
.btn-primary {
  background-color: #1565c0;
  border-color: #1565c0;
}

.btn-primary:hover {
  background-color: #0d47a1;
  border-color: #0d47a1;
}

/* Footer */
.footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}