.page-about {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark grey for default text, good contrast on light backgrounds */
  line-height: 1.6;
}

.page-about__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #1A2B4C; /* Dark blue background */
  color: #FFFFFF; /* White text for contrast */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis, high contrast on dark blue */
}

.page-about__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #E0E0E0; /* Slightly off-white for body text, good contrast on dark blue */
}

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15; /* Subtle background image */
  z-index: 0;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-about__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-about__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2B4C; /* Dark blue text for contrast */
  border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #1A2B4C;
}

.page-about__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C; /* Dark blue text on gold hover */
}

.page-about__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-about__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #1A2B4C; /* Dark blue title, good contrast on light backgrounds */
  position: relative;
  display: inline-block;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
}

.page-about__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555555; /* Dark grey for body text, good contrast on light backgrounds */
}

.page-about__vision-mission {
  background-color: #F8F8F8; /* Light grey background */
}

.page-about__content-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__image--left {
  float: left;
  margin-right: 30px;
}

.page-about__image--right {
  float: right;
  margin-left: 30px;
}

.page-about__values {
  background-color: #FFFFFF; /* White background */
}

.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

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

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

.page-about__value-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-about__value-title {
  font-size: 1.8em;
  color: #1A2B4C; /* Dark blue title, good contrast on light background */
  margin-bottom: 15px;
}

.page-about__cta {
  background-color: #1A2B4C; /* Dark blue background */
  color: #FFFFFF; /* White text */
  padding: 80px 20px;
}

.page-about__cta-title {
  font-size: 3em;
  color: #FFD700; /* Gold for emphasis, high contrast on dark blue */
  margin-bottom: 20px;
}

.page-about__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0; /* Slightly off-white for body text, good contrast on dark blue */
}

.page-about__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__cta-title {
    font-size: 2.5em;
  }
  .page-about__image--left,
  .page-about__image--right {
    float: none;
    margin: 20px auto;
  }
  .page-about__content-block {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-about__hero {
    padding: 60px 15px;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-about__section {
    padding: 40px 15px;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__value-title {
    font-size: 1.5em;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-description {
    font-size: 0.9em;
  }
  .page-about__btn {
    width: 100%;
    margin: 10px 0;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
}