/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #0F1D2C;
  line-height: 1.6;
}

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

.page-about__hero {
  background: linear-gradient(135deg, #1A2B3C, #0F1D2C);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFD700;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  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: #E0E0E0;
}

.page-about__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-about__section {
  padding: 60px 0;
  background-color: #0F1D2C;
}

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

.page-about__section-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-about__section-content--reverse {
  flex-direction: row-reverse;
}

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

.page-about__image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.page-about__section-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-about__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 25px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-about__section p {
  margin-bottom: 15px;
  color: #C0C0C0;
}

.page-about__section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-about__section ul li {
  background: #2A3B4C;
  margin-bottom: 10px;
  padding: 12px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  color: #E0E0E0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-about__section ul li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-about__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.page-about__link {
  color: #FFD700;
  text-decoration: none;
  border-bottom: 1px solid #FFD700;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-about__link:hover {
  color: #E5C100;
  border-color: #E5C100;
}

.page-about__cta-section {
  background-color: #1A2B3C;
  padding: 80px 0;
  text-align: center;
}

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

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

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

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

  .page-about__section-content {
    flex-direction: column;
    text-align: center;
  }

  .page-about__section-content--reverse {
    flex-direction: column;
  }

  .page-about__image-wrapper {
    margin-top: 30px;
  }
}

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

  .page-about__hero-description,
  .page-about__cta-description {
    font-size: 1em;
  }

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

  .page-about__section,
  .page-about__hero,
  .page-about__cta-section {
    padding: 40px 0;
  }

  .page-about__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

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

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

  .page-about__section ul li {
    padding: 10px 15px;
    font-size: 0.9em;
  }
}