/* style/about.css */
.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E2E8F0; /* Light gray for text on dark background */
  background-color: #1A202C; /* Primary dark background */
}

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

.page-about__hero {
  background: linear-gradient(135deg, #1A202C 0%, #E53E3E 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-about__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}

.page-about__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #E53E3E; /* Auxiliary red for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about__mission-vision, .page-about__values, .page-about__why-us, .page-about__cta {
  padding: 60px 0;
}

.page-about__mission-vision .page-about__container, .page-about__values .page-about__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-about__mission-vision .page-about__image, .page-about__values .page-about__image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-about__values .page-about__image--right {
  order: 2;
}

.page-about__mission-vision .page-about__text-content, .page-about__values .page-about__text-content {
  text-align: center;
}

.page-about__mission-vision p, .page-about__values p, .page-about__values li {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #CBD5E0; /* Slightly lighter text for readability */
}

.page-about__values ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.page-about__values li {
  position: relative;
  padding-left: 30px;
}

.page-about__values li::before {
  content: '✓';
  color: #E53E3E;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-about__why-us {
  background-color: #2D3748; /* Slightly lighter dark background */
}

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

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

.page-about__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-about__feature-item p {
  color: #CBD5E0;
}

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

.page-about__cta-title {
  font-size: 2.8em;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

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

.page-about__btn--primary:hover {
  background-color: #C53030;
  border-color: #C53030;
}

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

.page-about__btn--secondary:hover {
  background-color: #C53030;
  border-color: #C53030;
}

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

.page-about__btn--outline:hover {
  background-color: #E53E3E;
  color: #FFFFFF;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-about__mission-vision .page-about__container, .page-about__values .page-about__container {
    flex-direction: row;
    text-align: left;
  }
  .page-about__mission-vision .page-about__text-content, .page-about__values .page-about__text-content {
    text-align: left;
    flex: 1;
  }
  .page-about__mission-vision .page-about__image, .page-about__values .page-about__image {
    flex: 1;
    max-width: 50%;
  }
  .page-about__values .page-about__image--right {
    order: 1;
  }
  .page-about__values .page-about__text-content {
    order: 2;
  }
  .page-about__hero-title {
    font-size: 4.5em;
  }
  .page-about__section-title {
    font-size: 3em;
  }
}

@media (max-width: 767px) {
  .page-about__hero {
    padding: 60px 0;
  }
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__features {
    grid-template-columns: 1fr;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
  .page-about__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }
}