.page-about {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  line-height: 1.6;
}

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

.page-about__hero {
  background: linear-gradient(135deg, #1A2E47, #3A5C80); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

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

.page-about__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto;
  color: #E0E0E0;
}

.page-about__section {
  padding: 80px 0;
  background-color: #1A2E47; /* Primary dark blue background */
}

.page-about__section:nth-of-type(even) {
  background-color: #2A405C; /* Slightly lighter dark blue for alternating sections */
}

.page-about__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

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

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

.page-about__text-content strong {
  color: #FFD700;
}

.page-about__highlight {
  color: #FFD700;
}

.page-about__grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-about__grid-layout--reverse {
  grid-template-areas: "image text";
}

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

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

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

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

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

.page-about__value-item {
  background-color: #2A405C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__value-item:hover {
  transform: translateY(-10px);
  background-color: #3A5C80;
}

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

.page-about__value-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

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

.page-about__cta {
  background: linear-gradient(135deg, #FFD700, #E0B000); /* Gold gradient for CTA */
  padding: 80px 0;
  text-align: center;
  color: #1A2E47;
}

.page-about__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-about__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #1A2E47;
  font-weight: bold;
}

.page-about__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #333333;
}

.page-about__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 0 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__button--primary {
  background-color: #1A2E47;
  color: #FFD700;
  border: 2px solid #1A2E47;
}

.page-about__button--primary:hover {
  background-color: #0F1D2E;
  color: #FFFFFF;
  border-color: #0F1D2E;
  transform: translateY(-3px);
}

.page-about__button--secondary {
  background-color: transparent;
  color: #1A2E47;
  border: 2px solid #1A2E47;
}

.page-about__button--secondary:hover {
  background-color: #1A2E47;
  color: #FFD700;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__grid-layout {
    grid-template-columns: 1fr;
  }
  .page-about__grid-layout--reverse {
    grid-template-areas: unset;
  }
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
  .page-about__button {
    margin: 10px 0;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-about__hero {
    padding: 80px 0;
  }
  .page-about__section {
    padding: 60px 0;
  }
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-subtitle {
    font-size: 1.1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-about__hero {
    padding: 60px 0;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-subtitle {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__cta-title {
    font-size: 1.6em;
  }
  .page-about__button {
    font-size: 1em;
    padding: 12px 25px;
  }
}