/* style/about.css */

.page-about {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light grey for general text on dark background */
  background-color: #1a1a1a;
  line-height: 1.6;
}

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

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

.page-about__section--mission,
.page-about__section--why-us,
.page-about__section--contact {
  background-color: #0d0d0d;
}

.page-about__section--values {
  background-color: #003366;
}

.page-about__hero-section {
  background: linear-gradient(135deg, #003366, #1a1a1a);
  padding: 100px 20px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.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-subtitle {
  font-size: 1.5em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-about__heading {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-about__heading--center {
  text-align: center;
}

.page-about__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #cccccc;
}

.page-about__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.page-about__list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #ffffff;
}

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

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

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

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

.page-about__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-about__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-about__btn--secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-about__btn--tertiary:hover {
  background-color: #002244;
  color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-about__grid-item {
  background-color: #003366;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-about__grid-item:hover {
  transform: translateY(-10px);
}

.page-about__grid-item h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-about__grid-item p {
  color: #cccccc;
  font-size: 1em;
}

.page-about__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.page-about__cta-bottom {
  margin-top: 60px;
}

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

  .page-about__hero-subtitle {
    font-size: 1.3em;
  }

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

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

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

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

  .page-about__list {
    text-align: center;
    padding-left: 0;
  }

  .page-about__list li {
    background-position: center left;
    padding-left: 0;
  }

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

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 80px 15px;
  }

  .page-about__hero-title {
    font-size: 2.2em;
  }

  .page-about__hero-subtitle {
    font-size: 1.1em;
  }

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

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

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

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

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

  .page-about__hero-subtitle {
    font-size: 1em;
  }

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

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

  .page-about__list li {
    font-size: 1em;
  }
}