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

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

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

.page-about__container--reverse .page-about__image-block {
  order: 2;
}

.page-about__container--reverse .page-about__content-block {
  order: 1;
}

.page-about__content-block,
.page-about__image-block {
  flex: 1;
  min-width: 300px;
}

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

.page-about__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: page-about__pulse 15s infinite alternate;
  z-index: 0;
}

@keyframes page-about__pulse {
  0% { transform: scale(0.8) rotate(0deg); opacity: 0.5; }
  100% { transform: scale(1.2) rotate(360deg); opacity: 0.7; }
}

.page-about__hero .page-about__container {
  position: relative;
  z-index: 1;
}

.page-about__title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  font-weight: bold;
}

.page-about__subtitle {
  font-size: 1.3em;
  color: #e5dfd3;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-about__section:last-of-type {
  border-bottom: none;
}

.page-about__heading {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about__sub-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e5dfd3;
}

.page-about__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-about__list li {
  background-color: #2b3547;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #e5dfd3;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__list li:hover {
  transform: translateX(5px);
  background-color: #3c4a60;
}

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

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.page-about__image:hover {
  transform: scale(1.02);
}

.page-about__image--full-width {
  margin-top: 40px;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__cta-button--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-about__cta-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button--secondary {
  background-color: #3c4a60;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-about__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button--download {
  background-color: #007bff; /* A vibrant blue for download */
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-about__cta-button--download:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

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

.page-about__feature-item {
  background-color: #2b3547;
  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__feature-item:hover {
  transform: translateY(-5px);
  background-color: #3c4a60;
}

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

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

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

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

  .page-about__container--reverse .page-about__image-block {
    order: unset;
  }

  .page-about__container--reverse .page-about__content-block {
    order: unset;
  }
}

@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__heading {
    font-size: 1.8em;
  }

  .page-about__sub-heading {
    font-size: 1.5em;
  }

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

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

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

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

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

  .page-about__sub-heading {
    font-size: 1.3em;
  }

  .page-about__cta-button {
    display: block;
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
  .page-about__features-grid {
    grid-template-columns: 1fr;
  }
}