.page-about {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  line-height: 1.6;
}

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

.page-about__hero {
  background: linear-gradient(135deg, #0A2239 0%, #1A3A5A 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  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 40px;
}

.page-about__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

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

.page-about__button--primary:hover {
  background-color: #E0B700;
  transform: translateY(-2px);
}

.page-about__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-about__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-2px);
}

.page-about__section {
  padding: 60px 0;
  background-color: #0A2239;
  color: #E0E0E0;
}

.page-about__section--alt-background {
  background-color: #1A3A5A;
}

.page-about__section-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-about__section-content--reverse {
  flex-direction: row-reverse;
}

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

.page-about__image-wrapper {
  flex: 1;
  min-width: 300px;
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 25px;
  position: relative;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 70px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-about__section-content--reverse .page-about__section-title::after {
  left: auto;
  right: 0;
}

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

.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: #1A3A5A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__value-item:hover {
  transform: translateY(-5px);
  background-color: #2A4D6F;
}

.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: 0.95em;
  color: #CCCCCC;
}

.page-about__cta-section {
  background-color: #0A2239;
  padding: 80px 0;
  text-align: center;
  border-top: 5px solid #FFD700;
}

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

.page-about__cta-description {
  font-size: 1.15em;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #FFFFFF;
}

.page-about__cta-buttons .page-about__button {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-content {
    flex-direction: column;
    text-align: center;
  }
  .page-about__section-content--reverse {
    flex-direction: column;
  }
  .page-about__section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .page-about__section-content--reverse .page-about__section-title::after {
    right: auto;
  }
  .page-about__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-about__hero {
    padding: 80px 0;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-about__cta-buttons .page-about__button {
    margin: 0;
  }
  .page-about__button--secondary {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__value-title {
    font-size: 1.3em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__button {
    padding: 10px 20px;
    font-size: 1em;
  }
}