/* about.css */

/* 1) wrapper fills viewport minus header+footer and keeps white bg */
.about-page-wrapper {
  background: #fff;
  display: flex;
  flex-direction: column;
  /* adjust 120px to (header height + footer height) if needed */
  min-height: calc(100vh - 120px);
  margin: 0 auto;
  padding: 0;
}

/* 2) push team section to bottom of wrapper */
.team-section {
  margin-top: auto;
  background: #fff;      /* ensure white background */
  padding: 2rem 1rem;
  text-align: center;
}

/* Rest of your styles untouched */

.hero {
  padding: 4rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 4rem;
}

.hero p {
  max-width: 1200px;
  margin: 0 auto 1rem;
  line-height: 1.6;
  text-align: justify;
  font-size: 1.2rem;
}

.features {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 700px;
  text-align: left;
}

.features li {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}

.stats-section {
  /* background-color: #f0f0f0; */
  padding: 1rem 1rem;
  text-align: center;
}

.team-section {
  background: linear-gradient(180deg, white, #c9b8f8);
}
.team-card {
  /* transition: transform 0.3s, box-shadow 0.3s; */
  /* background: white; */
  background: linear-gradient(90deg, #eeeeee 0%, #a9a9aa 100%) !important;
  border: 1px solid rgba(0, 0, 0, 0.30); /* light, thin border */
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 16px 16px rgba(0,0,0,0.45);
  width: 250px;
  transition: border-color 0.2s ease;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 26px rgba(0,0,0,0.45);
}

.team-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.team-members {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.team-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  width: 250px;
}

.team-card img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-card h3 {
  margin: 0.5rem 0 0.2rem;
}

.team-card p {
  font-size: 0.9rem;
  color: #666;
}
