/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  color: #F0F0F0; /* Lighter text for dark background */
  background-color: #0A2463; /* Main background color */
}

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

.page-about__hero {
  background: linear-gradient(135deg, #0A2463 0%, #1A3E8A 100%); /* Dark blue gradient */
  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(227, 178, 60, 0.1) 0%, rgba(227, 178, 60, 0) 70%);
  opacity: 0.3;
  animation: page-about__pulse 15s infinite alternate;
}

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

.page-about__title {
  font-size: 3.5em;
  color: #E3B23C; /* Accent color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-about__subtitle {
  font-size: 1.5em;
  color: #F0F0F0;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-about__btn {
  display: inline-block;
  background-color: #E3B23C; /* Accent color for buttons */
  color: #0A2463; /* Dark text for accent background */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

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

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

.page-about__section:nth-of-type(even) {
  background-color: #0E2E72; /* Slightly lighter dark blue for alternating sections */
}

.page-about__section-title {
  font-size: 2.5em;
  color: #E3B23C;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-about__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E3B23C;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-about__grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-about__grid-layout--reverse {
  grid-template-columns: 1fr 1fr;
}

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

.page-about__content-block strong {
  color: #E3B23C;
}

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

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-about__values-list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #D0D0D0;
}

.page-about__values-list li::before {
  content: '✔';
  color: #E3B23C;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0;
}

.page-about__description {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 60px;
  color: #D0D0D0;
}

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

.page-about__feature-item {
  background-color: #1A3E8A; /* Darker blue for feature cards */
  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: #2D5BB4;
}

.page-about__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #E3B23C);
}

.page-about__feature-title {
  font-size: 1.6em;
  color: #E3B23C;
  margin-bottom: 15px;
}

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

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

.page-about__btn--large {
  padding: 20px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-about__link {
  color: #E3B23C;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-about__link:hover {
  color: #F5C76D;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__grid-layout {
    grid-template-columns: 1fr;
  }

  .page-about__grid-layout--reverse {
    grid-template-columns: 1fr;
  }

  .page-about__image-wrapper {
    order: -1; /* Image first on mobile for reverse layout */
    margin-bottom: 40px;
  }

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

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

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

  .page-about__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@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__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

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

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

@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__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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

  .page-about__content-block p, .page-about__values-list li {
    font-size: 0.95em;
  }
}