section {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: auto;
}

h1, h2 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-hero-text {
  max-width: 700px;
}

.about-hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-story,
.about-mission,
.about-values {
  background: #fff;
  margin-top: 2rem;
  border-left: 4px solid #df6214;
  padding-left: 1rem;
}

.about-values ul {
  list-style: none;
  padding: 0;
}

.about-values li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.about-team {
  margin-top: 3rem;
  h2{
    text-align: center;
  }
}
.about-team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.about-team-card {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  width: 240px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-team-card:hover {
  transform: translateY(-5px);
}

.about-team-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {

}
