/* ABOUT PAGE STYLES — Updated with Green Accent */

.about-page {
  background-color: #fdfdfd;
  color: #333;
}

/* Headings */
.about-page h1,
.about-page h2,
.about-page h3 {
  color: #1f1f1f;
  font-weight: 600;
}

.about-page h1 {
  line-height: 1.3;
  font-size: 2.25rem;
}

.about-page h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.about-page h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

/* Text */
.about-page p,
.about-page li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

.about-page .lead {
  font-size: 1.25rem;
  color: #2b2b2b;
}

/* Section spacing */
.about-page section {
  margin-bottom: 4rem;
}

/* Backgrounds */
.about-page .bg-light {
  background-color: #f8f9fa !important;
}

.about-page .bg-light-green {
  background-color: #eaf7f0;
  border-left: 4px solid #28a745;
  padding: 1.5rem;
  border-radius: 0.25rem;
}

/* Cards */
.text-contrast {
    color: #28a745 !important;
}

.about-page .card {
  background-color: #fff;
  border-radius: 0.5rem;
  border: 1px solid #e0e0e0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-page .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.06);
}

.about-page .card-body {
  padding: 1.5rem;
}

.about-page .card h3 {
  color: #1e1e1e;
}

/* Accent Utilities */
.about-page .text-accent {
  color: #28a745 !important;
}

.about-page .bg-accent-light {
  background-color: #e6f5ec !important;
}

/* Button (optional enhancement) */
.about-page .btn-accent {
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
}

.about-page .btn-accent:hover {
  background-color: #218838;
}

/* Responsive */
@media (max-width: 576px) {
  .about-page .lead {
    font-size: 1.125rem;
  }
  .about-page .card-body {
    padding: 1.25rem;
  }
}
