/* style/about.css */
.page-about {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.page-about__hero {
  background: linear-gradient(135deg, #1A237E, #3F51B5);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.page-about__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FFD700; /* Auxiliary color for emphasis */
}

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

.page-about__section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-about__section--alt-bg {
  background-color: #e8eaf6; /* Lighter shade of primary color */
}

.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;
  text-align: center;
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #1A237E; /* Primary color */
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

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

.page-about__section--alt-bg .page-about__section-title {
  color: #1A237E;
}

.page-about__section p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 15px;
}

.page-about__values-list, .page-about__advantages-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-about__values-list li, .page-about__advantages-list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #444;
}

.page-about__values-list li::before, .page-about__advantages-list li::before {
  content: '✔';
  color: #FFD700; /* Auxiliary color */
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0;
}

.page-about__values-list li strong, .page-about__advantages-list li strong {
  color: #1A237E;
}

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

.page-about__btn--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #1A237E; /* Primary color */
  border: 2px solid #FFD700;
}

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

.page-about__btn--secondary {
  background-color: #1A237E; /* Primary color */
  color: #FFD700; /* Auxiliary color */
  border: 2px solid #1A237E;
}

.page-about__btn--secondary:hover {
  background-color: #283593;
  border-color: #283593;
  transform: translateY(-3px);
}

.page-about__cta-section {
  background-color: #1A237E; /* Primary color */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-about__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color */
}

.page-about__cta-text {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__section-content {
    flex-direction: column;
    text-align: center;
  }

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

  .page-about__text-content, .page-about__image-wrapper {
    flex: none;
    width: 100%;
  }

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

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

  .page-about__title {
    font-size: 2.5em;
  }

  .page-about__subtitle {
    font-size: 1.1em;
  }

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

  .page-about__section p, .page-about__values-list li, .page-about__advantages-list li {
    font-size: 1em;
  }

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

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

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

  .page-about__title {
    font-size: 2em;
  }

  .page-about__subtitle {
    font-size: 0.9em;
  }

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

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

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