/* style/about.css */

/* Base styles for the about page content */
.page-about {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2342; /* Dark blue main background */
  line-height: 1.6;
}

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

.page-about__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3F6C 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
}

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

.page-about__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

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

.page-about__heading {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section headings */
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.page-about__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 20px auto 0;
  border-radius: 2px;
}

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

.page-about__content-flex:nth-child(even) {
  flex-direction: row-reverse; /* Alternate image/text layout */
}

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

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

.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 10px 20px rgba(0, 0, 0, 0.3);
}

.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-about__value-item {
  background-color: #1A3F6C; /* Slightly lighter dark blue for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-about__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

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

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

.page-about__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

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

.page-about__feature-item:hover {
  transform: translateY(-10px);
}

.page-about__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-about__feature-item h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-about__feature-item p {
  font-size: 1em;
  color: #CCCCCC;
}

.page-about__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.page-about__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

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

.page-about__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

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

.page-about__btn--download {
  background-color: #0A2342;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-about__btn--download:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-3px);
}

.page-about__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
}

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

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

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

  .page-about__heading {
    font-size: 2.2em;
  }

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

  .page-about__content-flex:nth-child(even) {
    flex-direction: column;
  }

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

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

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

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

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

  .page-about__heading {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-about__value-item, .page-about__feature-item {
    padding: 25px;
  }

  .page-about__value-item h3 {
    font-size: 1.5em;
  }

  .page-about__feature-item h3 {
    font-size: 1.4em;
  }

  .page-about__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin-left: 0;
    margin-top: 15px;
  }

  .page-about__btn--secondary, .page-about__btn--download {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-about__cta-bottom {
    padding-top: 30px;
  }

  .page-about__cta-bottom p {
    font-size: 1.1em;
    margin-bottom: 20px;
  }
}

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

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

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

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

  .page-about__heading {
    font-size: 1.5em;
    margin-bottom: 30px;
  }

  .page-about__icon, .page-about__feature-icon {
    width: 60px;
    height: 60px;
  }

  .page-about__btn {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }
  .page-about__btn--secondary, .page-about__btn--download {
    margin: 10px auto;
  }
}