/* AHFF About Page Styles - Corporate Layout */

.about-main {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1e293b;
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.about-hero {
  background-color: #f7fafc;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
}
.about-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #0b6fb8;
  margin-bottom: 1.2rem;
}
.about-hero p {
  color: #475569;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Section Layout */
.about-section {
  padding: 4rem 0;
  background-color: #ffffff;
  border-top: 1px solid #f1f5f9;
}
.about-section.alt {
  background-color: #f8fafc;
}
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
}
.section-split.reverse {
  direction: rtl;
}
.section-split.reverse .section-text {
  direction: ltr;
}
.section-text h2 {
  font-size: 1.8rem;
  color: #0b6fb8;
  margin-bottom: 1rem;
}
.section-text p {
  color: #475569;
  line-height: 1.6;
}
.section-text ul {
  color: #475569;
  line-height: 1.7;
  padding-left: 1.5rem;
}
.section-text li {
  margin-bottom: 0.6rem;
}
.section-text strong {
  color: #0b6fb8;
}
.section-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  object-fit: cover;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.9s ease forwards;
}
.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.9s ease forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .section-split {
    grid-template-columns: 1fr;
  }
  .section-split.reverse {
    direction: ltr;
  }
  .section-image {
    order: -1;
  }
  .about-hero {
    padding: 3.5rem 1.5rem;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 2rem 1rem;
  }
  .section-text h2 {
    font-size: 1.5rem;
  }
  .about-hero h1 {
    font-size: 2rem;
  }
}
