.about-hero {
  background: #f7f9f7;
  padding: 5rem 2rem;
  margin-top: 2rem;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
}

.about-hero-graphics {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-hero-graphics .logo {
  width: 200px;
  height: 200px;
  border-radius: 30%;
  border: 4px solid #e0f2e9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  background: white;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.about-values {
  background: #ffffff;
  padding: 5rem 2rem;
  text-align: center;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-values h2,
.about-faq h2 {
  font-size: 2rem;
  color: #2e3d2f;
  margin-bottom: 3rem;
}

.value-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.value-card img {
  height: 50px;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: #1c2c23;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.95rem;
  color: #555;
}

.about-faq {
  background: #f7f9f7;
  padding: 5rem 2rem;
}

.about-faq details {
  background: #f0f2f1;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.about-faq summary {
  font-weight: bold;
  font-size: 1.1rem;
  color: #2e3d2f;
}

.about-faq p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #444;
}

.leader-section {
  padding: 6rem 2rem;
  background: #f7f9f7;
  font-family: 'Segoe UI', sans-serif;
}

.leader-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
  flex-wrap: wrap;
}

.leader-photo {
  flex: 1 1 400px;
  text-align: center;
}

.leader-photo img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.leader-info {
  flex: 1 1 500px;
  text-align: left;
}

.leader-info h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #2e3d2f;
  line-height: 1.4;
}

.leader-info h2 span {
  font-weight: 300;
  font-size: 1rem;
  color: #bbb;
}

.leader-info .highlight {
  color: #4CAF50;
}

.leader-info h3 {
  font-size: 1.3rem;
  color: #345;
  margin-bottom: 1.5rem;
}

.leader-info p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.leader-info .quote {
  font-style: italic;
  font-weight: 500;
  color: #2e3d2f;
  margin-top: 2rem;
  border-left: 4px solid #4CAF50;
  padding-left: 1rem;
}

.location-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  padding: 5rem 2rem;
  gap: 2rem;
  background: #ffffff;
}

.location-content {
  flex: 1 1 350px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.location-content h2 {
  font-size: 2rem;
  color: #2e3d2f;
  margin-bottom: 1rem;
}

.location-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #555;
}

.location-content address {
  font-style: normal;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  background: #fff;
  padding: 1rem 1.5rem;
  border-left: 4px solid #4CAF50;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.map-container {
  flex: 1 1 500px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .value-cards {
    flex-direction: column;
    align-items: center;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .leader-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .leader-info {
    text-align: center;
  }

  .leader-info h2 span {
    display: block;
    margin-bottom: 0.25rem;
  }

  .leader-info .quote {
    text-align: center;
    border: none;
    padding-left: 0;
  }

  .location-section {
    flex-direction: column;
    padding: 3rem 1rem;
  }

  .map-container {
    height: 250px;
  }

  .location-content {
    text-align: center;
  }

  .location-content address {
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero-graphics {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-hero-graphics .tree {
    width: 80px;
  }

  .about-hero-graphics .logo-center {
    width: 100px;
    height: 100px;
  }

}
