/* About Page Specific Styles */

.hero-about {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../assets/images/about.png") center/cover;
  height: 70vh;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.about-intro h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.about-intro p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 4rem 0;
}

.mission-card,
.vision-card {
  background: #f8f9fa;
  padding: 3rem 2rem;
  border-radius: 10px;
  border-left: 5px solid #083c98;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.5rem;
  color: #083c98;
  margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

.values-section {
  margin-top: 5rem;
  text-align: center;
}

.values-section h2 {
  font-size: 2.5rem;
  color: #002e5a;
  margin-bottom: 3rem;
}

.value-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.value-row-reverse {
  grid-template-columns: 1fr 1fr;
}

.value-row-reverse .value-content {
  order: 1;
}

.value-row-reverse .value-image {
  order: 2;
}

.value-image {
  border-radius: 10px;
  overflow: hidden;
  border: 5px solid #002e5a;
}

.value-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.value-content {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 10px;
  border-left: 5px solid #002e5a;
  text-align: left;
}

.value-icon {
  font-size: 2.5rem;
  color: #002e5a;
  margin-bottom: 1rem;
}

.value-content h4 {
  font-size: 1.5rem;
  color: #002e5a;
  margin-bottom: 1rem;
}

.value-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Sustainability Section */
.sustainability-section {
  background: #f5f5f5;
  padding: 0;
}

.sustainability-green-bar {
  background: #2d7a2e;
  height: 40px;
}

.sustainability-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem 2rem;
}

.sustainability-logo {
  width: 80px;
  height: 80px;
}

.sustainability-section h2 {
  font-size: 2.5rem;
  color: #2d7a2e;
  margin: 0;
}

.sustainability-header::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background: #2d7a2e;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.sustainability-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 3rem 4rem;
  text-align: center;
}

.sustainability-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-about {
    height: 50vh;
  }

  .about-content {
    padding: 2.5rem 1rem;
  }

  .about-intro h2,
  .values-section h2 {
    font-size: 2rem;
  }

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

  .mission-vision {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-card,
  .vision-card {
    padding: 1.5rem 1rem;
  }

  .value-content {
    padding: 1.5rem 1rem;
  }

  .value-row,
  .value-row-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .value-image img {
    height: 200px;
  }

  .sustainability-content {
    padding: 2rem 1.5rem 3rem;
  }

  .sustainability-logo {
    width: 50px;
    height: 50px;
  }

  .sustainability-section h2 {
    font-size: 1.8rem;
  }
}
