/* ABOUT PAGE STYLES */

.about-intro,
.what-we-offer,
.vision,
.mission,
.core-values {
  background-color: #fdf6e7;
}

/* About Page Section Headings */
.about-intro h2,
.what-we-offer h2,
.vision h2,
.mission h2,
.core-values h2 {
  color: #5e0190;
}

.hero-divider {
  margin-top: 0;
  margin-bottom: 0;
  border-top: 4px solid #cbb26a;
}

.section-divider {
  border-top: 1px solid #cbb26a;
  margin: 0;
  padding: 0;
  width: 100%;
  /* Adjust spacing as needed */
}

.section-padding {
  padding: 70px 20px;
}

section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.about-intro,
.what-we-offer,
.vision,
.mission,
.core-values {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 15px;
  }
}
