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

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

.page-about__hero {
  position: relative;
  background-color: #0A2463;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px; /* Minimum height for hero section */
}

.page-about__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.9), rgba(255, 215, 0, 0.2));
  z-index: 1;
}

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

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-about__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  position: relative;
  z-index: 2;
  line-height: 1.2;
}

.page-about__title a {
  color: #FFD700;
  text-decoration: none;
}

.page-about__title a:hover {
  text-decoration: underline;
}

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

.page-about__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

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

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

.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: #0A2463;
}

.page-about__btn-keyword {
  text-transform: uppercase;
}

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

.page-about__section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-about__heading {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #0A2463;
}

.page-about__heading a {
  color: #0A2463;
  text-decoration: none;
}

.page-about__heading a:hover {
  text-decoration: underline;
}

.page-about__text {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

.page-about__text a {
  color: #0A2463;
  text-decoration: underline;
}

.page-about__text a:hover {
  color: #FFD700;
}

.page-about__mission-vision .page-about__container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.page-about__mission-vision .page-about__content-block {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-about__mission-vision .page-about__content-block .page-about__heading {
  text-align: left;
  font-size: 2em;
}

.page-about__mission-vision .page-about__content-block .page-about__text {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-about__why-choose-us .page-about__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-about__feature-item {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  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.1);
}

.page-about__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

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

.page-about__feature-text {
  color: #666;
  font-size: 1em;
}

.page-about__feature-text a {
  color: #0A2463;
  text-decoration: underline;
}

.page-about__feature-text a:hover {
  color: #FFD700;
}

.page-about__link {
  color: #0A2463;
  text-decoration: underline;
}

.page-about__link:hover {
  color: #FFD700;
}

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

.page-about__cta .page-about__heading {
  color: #FFD700;
}

.page-about__cta .page-about__heading a {
  color: #FFD700;
  text-decoration: none;
}

.page-about__cta .page-about__heading a:hover {
  text-decoration: underline;
}

.page-about__cta .page-about__text {
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-about__cta .page-about__text a {
  color: #FFD700;
  text-decoration: underline;
}

.page-about__cta .page-about__text a:hover {
  color: #E6C200;
}

.page-about__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-about__contact .page-about__text {
  margin-bottom: 30px;
}

.page-about__section-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__hero {
    padding: 60px 0;
    min-height: 300px;
  }

  .page-about__title {
    font-size: 2.5em;
  }

  .page-about__subtitle {
    font-size: 1.1em;
  }

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

  .page-about__text {
    font-size: 1em;
  }

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

  .page-about__btn--secondary {
    margin-left: 10px;
  }

  .page-about__mission-vision .page-about__container {
    flex-direction: column;
  }

  .page-about__mission-vision .page-about__content-block {
    text-align: center;
  }

  .page-about__mission-vision .page-about__content-block .page-about__heading {
    text-align: center;
  }

  .page-about__mission-vision .page-about__content-block .page-about__text {
    text-align: center;
  }

  .page-about__why-choose-us .page-about__features {
    flex-direction: column;
    align-items: center;
  }

  .page-about__feature-item {
    max-width: 90%;
  }

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__btn--secondary {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-about__title {
    font-size: 2em;
  }

  .page-about__subtitle {
    font-size: 0.9em;
  }

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

  .page-about__btn {
    padding: 8px 18px;
    font-size: 0.85em;
  }
}