/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-about__hero {
  background: linear-gradient(135deg, #007bff, #4da3ff);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.page-about__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-about__button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color */
  color: #333; /* Dark text for contrast */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

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

.page-about__button--primary {
  background-color: #007bff; /* Primary color */
  color: #fff;
}

.page-about__button--primary:hover {
  background-color: #0056b3;
}

.page-about__button--secondary {
  background-color: #ffc107; /* Auxiliary color */
  color: #333;
}

.page-about__button--secondary:hover {
  background-color: #e0a800;
}

.page-about__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-about__section:nth-child(even) {
  background-color: #f0f8ff; /* Lighter background for alternating sections */
}

.page-about__section-title {
  font-size: 2.2em;
  color: #007bff; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-about__section-title::after {
  content: '';
  width: 70px;
  height: 4px;
  background-color: #ffc107; /* Auxiliary color */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  border-radius: 2px;
}

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

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

.page-about__text-content {
  flex: 1;
  min-width: 300px;
}

.page-about__text-content h3 {
  color: #007bff;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-about__text-content p {
  margin-bottom: 15px;
}

.page-about__text-content ul {
  list-style: none;
  padding-left: 0;
}

.page-about__text-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.page-about__text-content ul li::before {
  content: '✔';
  color: #ffc107; /* Auxiliary color */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-about__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: 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(250px, 1fr));
  gap: 30px;
  text-align: center;
}

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

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

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

.page-about__value-item h3 {
  color: #007bff; /* Primary color */
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-about__cta {
  background-color: #007bff; /* Primary color */
  color: #fff;
  text-align: center;
  padding: 80px 0;
  border-radius: 0;
  box-shadow: none;
}

.page-about__cta .page-about__section-title {
  color: #fff;
  margin-bottom: 20px;
}

.page-about__cta .page-about__section-title::after {
  background-color: #ffc107;
}

.page-about__cta p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__title {
    font-size: 2.2em;
  }

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

  .page-about__content-flex {
    flex-direction: column;
    text-align: center;
  }

  .page-about__content-flex--reverse {
    flex-direction: column;
  }

  .page-about__text-content, .page-about__image-wrapper {
    min-width: unset;
    width: 100%;
  }

  .page-about__text-content ul {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-about__hero {
    padding: 60px 0;
    min-height: 300px;
  }

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

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

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

  .page-about__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }

  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-about__hero {
    padding: 40px 0;
    min-height: 250px;
  }

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

  .page-about__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-about__value-item {
    padding: 20px;
  }
}