/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #1A2B3C; /* Dark background */
  line-height: 1.6;
}

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

.page-about__hero {
  background: linear-gradient(135deg, #FFD700, #1A2B3C);
  padding: 100px 0;
  text-align: center;
  color: #1A2B3C; /* Dark text on light gradient */
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #1A2B3C; /* Ensure high contrast */
}

.page-about__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #333; /* Darker text for readability */
}

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

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

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

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

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

.page-about__text-content h2 {
  text-align: left;
  font-size: 2.2em;
  margin-bottom: 25px;
  color: #FFD700;
}

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

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

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block; /* Remove extra space below image */
  margin: 0 auto;
}

.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: #2A3B4C; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

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

.page-about__value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #FFD700; /* Gold icons */
}

.page-about__value-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.page-about__list li {
  background-color: #2A3B4C;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-about__list li strong {
  color: #FFD700;
}

.page-about__cta {
  background-color: #FFD700; /* Gold background for CTA */
  padding: 80px 0;
  text-align: center;
  color: #1A2B3C; /* Dark text on gold */
}

.page-about__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #1A2B3C;
}

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

.page-about__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-about__button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-about__button--primary {
  background-color: #1A2B3C;
  color: #FFD700;
}

.page-about__button--primary:hover {
  background-color: #0F1A25;
  transform: translateY(-3px);
}

.page-about__button--secondary {
  background-color: transparent;
  color: #1A2B3C;
  border: 2px solid #1A2B3C;
}

.page-about__button--secondary:hover {
  background-color: #1A2B3C;
  color: #FFD700;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }

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

  .page-about__text-content h2 {
    font-size: 1.8em;
  }

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

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

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

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

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__button {
    width: 80%;
    max-width: 300px;
  }
}

@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: 40px;
  }

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

  .page-about__value-title {
    font-size: 1.3em;
  }

  .page-about__cta {
    padding: 60px 0;
  }

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

  .page-about__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }

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

  .page-about__text-content h2 {
    font-size: 1.6em;
  }

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