.about-page .about-hero {
  position: relative;
  height: 300px;
  background: linear-gradient(
      to bottom,
      rgba(20, 35, 25, 0.85),
      rgba(20, 35, 25, 0.6)
    ), url("/assets/images/hero.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* .about-page .about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent,
    rgba(0, 0, 0, 0.4)
  );
}

.about-page .about-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.3)
  );
} */

.about-page .about-hero h1 {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  font-size: 36px;
}

.about-page .about-content {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-page .quote {
  border-left: 4px solid #2f5d3f;
  font-style: italic;
  margin: 20px 0;
  color: #555;
  background: rgba(47, 93, 63, 0.05);
  padding: 15px 20px;
  border-radius: 8px;
}

.about-page .value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.about-page .value-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-page .value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-page .audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.about-page .audience-card {
  text-align: center;
  background: #fff;
  padding: 12px 16px;
  border-radius: 20px;
  display: inline-block;
  margin: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-page .about-cta {
  max-width: 1000px;
  margin: 60px auto;
  padding: 60px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1f3d2b, #2f5d3f);
  color: #fff;
}

.about-page .about-content p {
  margin-bottom: 16px;
}

.about-page .about-section h2 {
  margin-top: 40px;
}

.about-page .about-cta a {
  background: #fff;
  color: #1f3d2b;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

.about-page .about-cta {
  position: relative;
}

.about-page .about-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/gold.jpg") center/cover;
  opacity: 0.05;
  pointer-events: none;
}

