/* about.css */

.about-hero {
  /* Reuse your existing .hero styles if possible, or override here */
}

.about-hero-p {
  font-size: 1.6rem;
}

.about-section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.about-story p {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  opacity: 0.9;
}

.values-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.values-container p {
  line-height: 1.6;
}

.value-card {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  text-align: center;
}

.value-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-center {
  text-align: center;
  margin: 5rem 0;
}

.cta-button {
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cta-button:hover {
  /* optional – define --accent-dark if needed */
}

.footer-section {
  background: #f8f9fa;
  padding: 6rem 2rem;
  text-align: center;
}

.footer-section h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.footer-section p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.secondary-cta {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  background: #333;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.secondary-cta:hover {
  background: #222;
}

/* Optional: make headings consistent with your site */
.about-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}