/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A162B; /* A slightly lighter dark blue for overall background */
}

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

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

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

.page-about__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  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: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-about__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2B4C; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
  background-color: #e6c200; /* Darker gold */
  transform: translateY(-3px);
}

.page-about__btn--secondary {
  background-color: #1A2B4C; /* Dark blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
  background-color: #0d172a; /* Darker blue */
  transform: translateY(-3px);
}

.page-about__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-about__btn--outline:hover {
  background-color: #FFD700;
  color: #1A2B4C;
  transform: translateY(-3px);
}

.page-about__section {
  padding: 80px 0;
  background-color: #1A2B4C; /* Main section background */
}

.page-about__section:nth-of-type(even) {
  background-color: #0A162B; /* Alternate section background */
}

.page-about__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-about__flex-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-about__flex-container--reverse {
  flex-direction: row-reverse;
}

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

.page-about__image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-about__content-wrapper {
  flex: 1;
}

.page-about__content-wrapper p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-about__content-wrapper p strong {
  color: #FFD700;
}

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

.page-about__value-item {
  background-color: #0A162B; /* Darker background for value items */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__value-item:hover {
  transform: translateY(-10px);
  background-color: #1A2B4C; /* Slightly lighter on hover */
}

.page-about__value-item h3 {
  color: #FFD700; /* Gold for value titles */
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-about__value-item p {
  font-size: 0.95em;
  line-height: 1.7;
  color: #C0C0C0;
}

.page-about__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-about__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-about__feature-list li {
  display: flex;
  align-items: center;
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-about__feature-list li img {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  filter: invert(80%) sepia(80%) saturate(1000%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Gold tint for check icons */
}

.page-about__cta-description {
  font-size: 1.2em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.7;
  color: #E0E0E0;
}

.page-about__cta-buttons {
  text-align: center;
  margin-top: 30px;
}

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

.page-about .keyword {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__flex-container {
    flex-direction: column;
    text-align: center;
  }
  .page-about__flex-container--reverse {
    flex-direction: column;
  }
  .page-about__content-wrapper, .page-about__image-wrapper {
    width: 100%;
  }
  .page-about__image-wrapper {
    order: -1; /* Image first on mobile for reversed sections */
  }
  .page-about__flex-container--reverse .page-about__image-wrapper {
    order: 0;
  }
  .page-about__value-item {
    padding: 25px;
  }
}

@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: 60px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__content-wrapper p {
    font-size: 1em;
  }
  .page-about__feature-list li {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-description {
    font-size: 0.9em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .page-about__cta-buttons {
    flex-direction: column;
  }
}