/* Hero */
.about-hero {
  background: url("https://images.unsplash.com/photo-1529070538774-1843cb3265df?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}

.about-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
}

/* About Section */
.about-section {
  padding: 80px 10%;
  background: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
}

.about-text {
  flex: 1 1 450px;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #555;
  font-size: 1.1rem;
}

/* Mission Section */
.mission {
  text-align: center;
  padding: 60px 10%;
  background: #f9f9f9;
}

.mission h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.mission p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }
}
