/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0d1a2e; /* Slightly lighter dark background */
}

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

.page-about__hero-section {
  background: linear-gradient(135deg, #1A2B4C, #0d1a2e);
  padding: 80px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-about__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #c0c0c0;
}

.page-about__hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1000px;
  opacity: 0.2;
  z-index: 0;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-about__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-about__btn--primary {
  background-color: #FFD700;
  color: #1A2B4C;
  border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
  background-color: #e5c100;
  border-color: #e5c100;
  transform: translateY(-2px);
}

.page-about__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

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

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

.page-about__section--alt-bg {
  background-color: #1A2B4C;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

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

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

.page-about__content-text {
  flex: 1;
  padding: 20px 0;
}

.page-about__content-text h2 {
  text-align: left;
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-about__content-text h2::after {
  left: 0;
  transform: translateX(0);
}

.page-about__content-text p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #c0c0c0;
}

.page-about__content-image {
  flex: 1;
  text-align: center;
}

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

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

.page-about__value-item {
  background-color: #1A2B4C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-about__value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-about__value-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #b0b0b0;
}

.page-about__cta {
  background-color: #0d1a2e;
  padding: 80px 0;
}

.page-about__cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-about__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-about__cta-description {
  font-size: 1.3em;
  color: #c0c0c0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-buttons .page-about__btn {
  margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__content-row {
    flex-direction: column;
    text-align: center;
  }
  .page-about__content-row--reverse {
    flex-direction: column;
  }
  .page-about__content-text h2 {
    text-align: center;
  }
  .page-about__content-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
  .page-about__cta-description {
    font-size: 1.1em;
  }
  .page-about__cta-buttons .page-about__btn {
    margin: 10px 0;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .page-about__hero-section {
    padding: 60px 0 30px;
  }
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-about__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-about__cta-buttons .page-about__btn {
    width: 100%;
  }
}