.page-about {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-about__hero-section {
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  background-color: #007bff; /* Primary color background */
  color: #ffffff;
  text-align: center;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.page-about__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffc107; /* Auxiliary color for emphasis */
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-about__hero-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color for buttons */
  color: #007bff; /* Primary color for button text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 10px;
  transition: background-color 0.3s ease;
  border: 2px solid #ffc107;
}

.page-about__hero-button:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.page-about__hero-button--secondary {
  background-color: transparent;
  color: #ffc107;
  border-color: #ffc107;
}

.page-about__hero-button--secondary:hover {
  background-color: #ffc107;
  color: #007bff;
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-about__story-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__story-content {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.page-about__story-title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 20px;
}

.page-about__story-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-about__story-button {
  display: inline-block;
  background-color: #007bff; /* Primary color for buttons */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-about__story-button:hover {
  background-color: #0056b3;
}

.page-about__story-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-about__mission-section {
  background-color: #e6f2ff; /* Light background for contrast */
  padding: 80px 20px;
  text-align: center;
}

.page-about__mission-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-about__mission-title {
  font-size: 2.8em;
  color: #007bff;
  margin-bottom: 50px;
}

.page-about__mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-about__mission-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-about__mission-item:hover {
  transform: translateY(-5px);
}

.page-about__mission-icon {
  width: 100%; /* Ensure images are not small icons */
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.page-about__mission-item-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-about__mission-item-description {
  font-size: 1em;
  color: #555555;
}

.page-about__cta-section {
  background-color: #007bff; /* Primary color background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-about__cta-content {
  max-width: 600px;
}

.page-about__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffc107;
}

.page-about__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #007bff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 10px;
  transition: background-color 0.3s ease;
  border: 2px solid #ffc107;
}

.page-about__cta-button:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.page-about__cta-button--secondary {
  background-color: transparent;
  color: #ffc107;
  border-color: #ffc107;
}

.page-about__cta-button--secondary:hover {
  background-color: #ffc107;
  color: #007bff;
}

.page-about__cta-image {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }

  .page-about__hero-description {
    font-size: 1.1em;
  }

  .page-about__story-section {
    flex-direction: column;
    padding: 30px 15px;
  }

  .page-about__story-content {
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }

  .page-about__story-title {
    font-size: 2em;
  }

  .page-about__story-image {
    max-width: 100%;
  }

  .page-about__mission-title {
    font-size: 2.2em;
  }

  .page-about__mission-grid {
    grid-template-columns: 1fr;
  }

  .page-about__cta-title {
    font-size: 2.2em;
  }

  .page-about__cta-image {
    max-width: 100%;
  }

  /* Ensure all content images are responsive and not too small */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }

  .page-about__hero-description {
    font-size: 1em;
  }

  .page-about__hero-button {
    padding: 12px 20px;
    font-size: 1em;
    margin: 5px;
  }

  .page-about__story-title {
    font-size: 1.8em;
  }

  .page-about__mission-title {
    font-size: 1.8em;
  }

  .page-about__cta-title {
    font-size: 1.8em;
  }
}