/* Main container */
.our-story {
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff;
}

/* Headings */
.our-story h1 {
  font-weight: 700 !important;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.our-story h2 {
  font-weight: 600 !important;
  font-size: 1.5rem;
  margin: 1.5rem 0 0.75rem;
  color: #ffffff;
}

.our-story p {
  font-weight: 400 !important;
  font-size: 18px !important;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Responsive tweak */
@media (max-width: 640px) {
  .our-story {
    font-size: 16px;
  }
  .our-story h1 {
    margin: 0 0 0.75rem;
  }
  .our-story h2 {
    margin: 2rem 0 0.5rem;
  }
  .our-story h3 {
    margin: 1rem 0 0.5rem;
  }
}

/* Call-to-action contact section */
.cta-contact {
  text-align: center;
  margin: 3rem 0;
  max-width: 800px; /* ✅ constrain the text width */
  margin-left: auto; /* ✅ center it horizontally */
  margin-right: auto;
  padding: 0 1.5rem; /* ✅ add breathing space on smaller screens */
}

.cta-contact p {
  font-size: 18px !important;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.page.our-story .cta-contact a.cta-button {
  display: inline-block;
  background-color: #fb5924;
  color: #fff;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: none;
}

.page.our-story .cta-contact a.cta-button:hover {
  background-color: #e25700;
}
