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

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

.page-about__hero {
  background: linear-gradient(135deg, #0A2463, #334e8d);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

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

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

.page-about__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

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

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

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

.page-about__mission-vision {
  background-color: #f9f9f9;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #0A2463;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-about__section-title--center::after {
  left: 50%;
  transform: translateX(-50%);
}

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

.page-about__content-grid:last-of-type {
  margin-bottom: 0;
}

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

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

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

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

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

.page-about__values {
  background-color: #ffffff;
  text-align: center;
}

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

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

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

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

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

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

.page-about__history {
  background-color: #f2f7fb;
}

.page-about__cta {
  background: linear-gradient(135deg, #FFD700, #f5e08a);
  padding: 80px 0;
  text-align: center;
  color: #0A2463;
}

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

.page-about__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__content-grid {
    flex-direction: column;
    gap: 40px;
  }
  .page-about__content-grid--reverse {
    flex-direction: column;
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-about__hero {
    padding: 80px 0;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__section {
    padding: 60px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta {
    padding: 60px 0;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

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