/* style/about.css */
.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFFFFF; /* Default text color for dark backgrounds */
  background-color: #0A2342; /* Main background color */
}

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

.page-about__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1A3F6D 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFD700;
}

.page-about__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,gaming,light_effect,mcw678]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-about__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  position: relative;
  z-index: 1;
}

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

.page-about__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
}

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

.page-about__btn--primary:hover {
  background-color: #e6c200;
  color: #000000;
}

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

.page-about__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
}

.page-about__content-section {
  padding: 60px 0;
}

.page-about__section--mission {
  background-color: #0A2342;
  color: #F0F0F0;
}

.page-about__section--values {
  background-color: #1a3f6d;
  color: #F0F0F0;
}

.page-about__section--responsible {
  background-color: #0A2342;
  color: #F0F0F0;
}

.page-about__heading {
  font-size: 2.5em;
  color: #FFD700; /* Gold for headings */
  text-align: center;
  margin-bottom: 40px;
}

.page-about__description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.page-about__image-wrapper {
  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__image--full-width {
  max-width: 80%;
  display: block;
  margin: 0 auto;
}

.page-about__list {
  list-style: none;
  padding: 0;
}

.page-about__list li {
  background: #1A3F6D;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  border-left: 5px solid #FFD700;
}

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

.page-about__cta-section {
  background-color: #FFD700; /* Gold background for CTA */
  color: #0A2342; /* Dark blue text for CTA */
  padding: 80px 0;
  text-align: center;
}

.page-about__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #0A2342;
}

.page-about__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-about__cta-small-text {
  margin-top: 20px;
  font-size: 0.9em;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__title {
    font-size: 2.5em;
  }
  .page-about__heading {
    font-size: 2em;
  }
  .page-about__grid {
    flex-direction: column;
  }
  .page-about__grid--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 80px 0;
  }
  .page-about__title {
    font-size: 2em;
  }
  .page-about__subtitle {
    font-size: 1em;
  }
  .page-about__content-section {
    padding: 40px 0;
  }
  .page-about__heading {
    font-size: 1.8em;
  }
  .page-about__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
  .page-about__image--full-width {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .page-about__hero-section {
    padding: 60px 0;
  }
  .page-about__title {
    font-size: 1.8em;
  }
  .page-about__subtitle {
    font-size: 0.9em;
  }
  .page-about__heading {
    font-size: 1.5em;
  }
  .page-about__btn--large {
    padding: 15px 30px;
    font-size: 1em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
}