/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #2c6e49;
  color: white;
}

header nav a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

header nav a:hover,
header nav a.active {
  color: #a8d5ba;
}

/* Hero About Section */
.hero-about {
  text-align: center;
  padding: 100px 20px;
  background: url('../images/about-hero.jpg') no-repeat center center/cover;
  color: white;
}

.hero-about h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-about p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Story Section */
.story {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 80px 50px;
  gap: 50px;
}

.story-image {
  flex: 1;
  text-align: center;
}

.story-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
}

.story-text {
  flex: 1;
}

.story-text h2 {
  color: #2c6e49;
  margin-bottom: 20px;
}

.story-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}

/* Team Section */
.team {
  text-align: center;
  padding: 80px 20px;
  background-color: #f0f8f5;
}

.team h2 {
  color: #2c6e49;
  margin-bottom: 50px;
}

.team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-card {
  background-color: white;
  width: 250px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
}

.team-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

/* Footer */
footer {
  display: flex;
  justify-content: space-around;
  padding: 40px;
  background-color: #2c6e49;
  color: white;
}

footer a {
  color: white;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}

footer a:hover {
  color: #a8d5ba;
}

/* Responsive */
@media (max-width: 900px) {
  .story { flex-direction: column; text-align: center; }
  .story-text { order: 2; }
  .team-cards { flex-direction: column; align-items: center; }
}
