.page-about {
  font-family: 'Arial', sans-serif;
  color: #0A2342; /* Dark Blue for text */
  line-height: 1.6;
}

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

.page-about__hero {
  background-color: #0A2342; /* Dark Blue background */
  color: #FFFFFF; /* White text for contrast */
  padding: 80px 0;
  text-align: center;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
}

.page-about__hero-subtitle {
  font-size: 1.5em;
  max-width: 800px;
  margin: 0 auto;
}

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

.page-about__section:nth-of-type(even) {
  background-color: #f8f8f8; /* Light grey for alternating sections */
}

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

.page-about__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-about__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-about__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-about__text-content {
  flex: 1;
}

.page-about__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333; /* Darker grey for body text */
}

.page-about__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

.page-about__value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-about__value-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

.page-about__value-title {
  font-size: 1.6em;
  color: #0A2342;
  margin-bottom: 15px;
}

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

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

.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 30px;
  color: #E0E0E0;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark Blue text for contrast */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700; /* Gold border */
}

.page-about__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__hero-subtitle {
    font-size: 1.2em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__content-grid {
    flex-direction: column;
  }
  .page-about__content-grid--reverse {
    flex-direction: column;
  }
  .page-about__value-title {
    font-size: 1.4em;
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
  .page-about__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-about__hero {
    padding: 60px 0;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-subtitle {
    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: 0.9em;
  }
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-subtitle {
    font-size: 0.9em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__text-content p {
    font-size: 0.95em;
  }
  .page-about__value-icon {
    width: 60px;
    height: 60px;
  }
  .page-about__value-title {
    font-size: 1.2em;
  }
  .page-about__cta-title {
    font-size: 1.6em;
  }
}