/* About Page: White background, black text - clean single-column layout */

/* Force white page background */
body.about-page-layout,
body.about-page-layout .smooth-content,
.about-main {
  background: #ffffff !important;
}

.about-article {
  color: #111;
}

/* Section spacing */
.about-section {
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
  background: #ffffff !important;
}

.about-section:last-of-type {
  border-bottom: none;
}

/* Container */
.about-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography - black text */
.about-hero-title,
.about-h2,
.about-h3,
.about-text,
.about-why-list li,
.about-faq-q,
.about-pillars-table th,
.about-pillars-table td {
  color: #111 !important;
}

/* Hero: extra top spacing from header */
.about-hero {
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.about-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1.5rem;
}

.about-h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 1rem;
}

.about-h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  margin: 2rem 0 0.75rem;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1rem;
  color: #333 !important;
}

.about-text-lead {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

/* Core Pillars table */
.about-pillars-table-wrapper {
  margin-top: 2rem;
  overflow-x: auto;
}

.about-pillars-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
}

.about-pillars-table th,
.about-pillars-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
  vertical-align: top;
  color: #111 !important;
}

.about-pillars-table th {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #333 !important;
  background: #f8f9fa;
}

.about-pillars-table tbody tr:hover td {
  background: #fafafa;
}

.about-pillars-table td {
  font-size: 1rem;
  line-height: 1.65;
}

/* Mission & Vision grid */
.about-mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.about-card {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #eee;
}

.about-card .about-text {
  margin-bottom: 0;
}

/* Why Choose list */
.about-why-list {
  margin: 1rem 0 0;
  padding-left: 1.5rem;
}

.about-why-list li {
  margin-bottom: 1rem;
  line-height: 1.65;
  color: #333 !important;
}

.about-why-list li:last-child {
  margin-bottom: 0;
}

/* FAQ */
.about-faq-list {
  margin-top: 1.5rem;
}

.about-faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}

.about-faq-item:last-child {
  border-bottom: none;
}

.about-faq-q {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.about-faq-item .about-text {
  margin: 0;
}

/* CTA */
.about-cta {
  text-align: center;
  padding: 5rem 0 !important;
}

.about-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: #111;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.2s;
}

.about-btn:hover {
  background: #333;
  color: #fff !important;
}

/* Responsive */
@media (max-width: 991px) {
  .about-pillars-table {
    display: block;
  }
  .about-pillars-table thead {
    display: none;
  }
  .about-pillars-table tbody tr {
    display: block;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fafafa;
  }
  .about-pillars-table td {
    display: block;
    border: none;
    padding: 0.5rem 0;
  }
  .about-pillars-table td:first-child {
    font-weight: 600;
    font-size: 1.1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 0.5rem;
  }
  .about-pillars-table td::before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
    color: #555 !important;
  }
  .about-pillars-table td:nth-child(2)::before {
    content: "Strategy";
  }
  .about-pillars-table td:nth-child(3)::before {
    content: "Impact";
  }
  .about-mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 2.5rem 0;
  }
  .about-container {
    padding: 0 1rem;
  }
}
