body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.about-hero {
  background: url('./about-background.jpg') no-repeat center center/cover;
  padding: 80px 20px;
  color: black;
  text-align: center;
  animation: fadeIn 1.5s ease;
}

.about-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #f2f2f2;
}
.about-hero-content p {
  color: #f2f2f2;
}

.about-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.about-mission {
  text-align: center;
  padding: 50px 20px;
  background: #fff3e0;
}

.about-mission h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.team-section {
  background: #f2f2f2;
  padding: 60px 20px;
  text-align: center;
}

.team-section h2 {
  margin-bottom: 40px;
}

.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.team-member {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.team-member h4 {
  margin: 15px 0 5px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
