/*about section styles*/

#about-hero-container {
  display: flex;
  flex-direction: column;
}

#about-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  margin: 1rem;
  font-size: 1.5rem;
  color: var(--button-color);
}

#about-subtitle {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 2rem;
  margin: 0 1rem;
}

#about-text {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 2rem;
  margin: 0 1rem;
}

#stats {
  display: flex;
  gap: 2rem;
  margin: 1rem;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.stat-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: bold;
  color: #000000;
}

.stat-label {
  font-size: 1.25rem;
  color: #475569;
}

/*about hero responsive styles*/

@media (min-width: 768px) {
  #about-text-content {
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 1.5rem;
  }
  #about-title {
    font-size: 2.5rem;
  }
  #about-subtitle {
    font-size: 3rem;
    margin: 1rem 0;
  }
  #about-text {
    font-size: 1.5rem;
  }

  #stats {
    align-items: center;
    justify-content: center;
    gap: 4rem;
  }
}

/*leadership section styles*/

#leadership-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

#leadership-text {
  text-align: center;
}

#leadership-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000000;
  margin-top: 1rem;
}
#leadership-text p {
  font-size: 1.25rem;
  color: #475569;
  margin-top: 1rem;
}

#leadership-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.leadership-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  background: rgb(237, 234, 234);
  flex: 1;
}

.leadership-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


.leadership-card img {
  width: 100%;
  border-radius: 0.5rem;
}

.leadership-card:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.leadership-card h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
}

.leader-title {
  font-size: 1.25rem;
  color: #26579b;
  font-weight: bold;
}

.leader-about {
  font-size: 1.25rem;
  color: #475569;
}

/*leadership responsive styles*/

@media (min-width: 768px) {
  #leadership-cards {
    flex-direction: row;
  }
}

