/* About page-only styles */

.page-hero--about {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-medium) 100%);
  padding: 6rem 0;
  text-align: center;
}

.page-hero--about h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 400;
}

.page-hero--about p {
  font-size: 1.2rem;
  color: var(--gray-light);
}

/* Center the section heading only */
.about-content {
  text-align: left;
}

.about-content h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--navy);
  font-weight: 800;
}

/* Make the paragraphs readable (this is the big fix) */
.about-content p {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.9;
  text-align: left;
}

/* The bold sentence should still read nicely */
.about-content p strong {
  color: var(--navy);
}

/* Center the button area */
.about-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Button (keep if you don't already have a global one) */
.btn-primary {
  background: var(--accent);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .page-hero--about {
    padding: 4rem 0;
  }

  .page-hero--about h1 {
    font-size: 2.5rem;
  }

  .about-content p {
    max-width: 100%;
    padding: 0 1rem;
  }
}
