.page-about {
  font-family: 'Arial', sans-serif;
  color: #0A2463; /* Main text color */
  background-color: #f8f8f8; /* Light background for readability */
  line-height: 1.6;
}

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

.page-about__hero {
  background: linear-gradient(135deg, #0A2463 0%, #2a4a8d 100%); /* Dark blue gradient */
  color: #FFFFFF; /* White text on dark background */
  padding: 80px 0;
  text-align: center;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-about__section {
  padding: 60px 0;
}

.page-about__section:nth-of-type(odd) {
  background-color: #f8f8f8;
}

.page-about__section:nth-of-type(even) {
  background-color: #FFFFFF;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-about__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-about__content-grid--reverse {
  grid-template-areas: "image text"; /* Default order for desktop */
}

.page-about__content-grid--reverse .page-about__text-content {
  grid-area: text;
}

.page-about__content-grid--reverse .page-about__image-wrapper {
  grid-area: image;
}

.page-about__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
}

.page-about__image-wrapper {
  text-align: center;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-about__value-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-about__value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.page-about__value-item h3 {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-about__value-item p {
  font-size: 1em;
  color: #555555;
}

.page-about__cta {
  background-color: #0A2463; /* Dark blue background */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-about__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 20px;
}

.page-about__cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-about__cta-small-text {
  font-size: 0.9em;
  margin-top: 30px;
  color: #a0a0a0;
}

.page-about__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-about__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Dark blue text on gold */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-about__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-about__btn--secondary {
  background-color: transparent;
  color: #0A2463;
  border: 2px solid #0A2463;
  box-shadow: none;
}

.page-about__btn--secondary:hover {
  background-color: #0A2463;
  color: #FFD700;
  transform: translateY(-3px);
}

.page-about__btn--large {
  padding: 18px 45px;
  font-size: 1.3em;
}

.page-about .highlight {
  color: #FFD700;
  font-weight: bold;
}

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

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

  .page-about__content-grid {
    grid-template-columns: 1fr;
    grid-template-areas: unset; /* Reset for mobile */
  }

  .page-about__content-grid--reverse .page-about__text-content,
  .page-about__content-grid--reverse .page-about__image-wrapper {
    grid-area: unset;
  }

  .page-about__content-grid--reverse .page-about__image-wrapper {
    order: -1; /* Image first on smaller screens */
  }

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

  .page-about__btn--large {
    font-size: 1.1em;
    padding: 15px 35px;
  }
}

@media (max-width: 768px) {
  .page-about__hero {
    padding: 60px 0;
  }

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

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

  .page-about__section {
    padding: 40px 0;
  }

  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

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

  .page-about__cta {
    padding: 60px 0;
  }

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

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

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

  .page-about__btn {
    font-size: 0.9em;
    padding: 12px 25px;
  }

  .page-about__btn--large {
    font-size: 1em;
    padding: 14px 30px;
  }
}