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

.page-about__hero {
  background-color: #003366;
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-about__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Accent color for main title */
  font-weight: bold;
}

.page-about__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
}

.page-about__btn {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-about__btn:hover {
  background-color: #e6b800; /* Slightly darker gold */
  transform: translateY(-2px);
}

.page-about__btn--primary {
  background-color: #FFCC00;
  color: #003366;
}

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

.page-about__btn--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-about__section {
  padding: 60px 20px;
  text-align: left;
}

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

.page-about__mission-vision .page-about__container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.page-about__content-block {
  flex: 1;
  min-width: 300px;
}

.page-about__heading {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.page-about__heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: #FFCC00;
}

.page-about__heading--center::after {
  left: 50%;
  transform: translateX(-50%);
}

.page-about__sub-heading {
  font-size: 1.8em;
  color: #003366;
  margin-top: 20px;
  margin-bottom: 15px;
}

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

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

.page-about__values {
  background-color: #eef4f8;
  text-align: center;
}

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

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

.page-about__value-item:hover {
  transform: translateY(-5px);
}

.page-about__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.2)); /* Adding a subtle shadow to icons */
}

.page-about__why-us {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__why-us .page-about__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-about__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-about__image--right {
  max-width: 100%;
  height: auto;
}

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

.page-about__list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1em;
  color: #444;
}

.page-about__list li::before {
  content: '✓';
  color: #FFCC00;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

.page-about__list-strong {
  color: #003366;
}

.page-about__cta {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__cta-content {
  z-index: 1;
  position: relative;
  padding: 40px 20px;
}

.page-about__cta .page-about__heading {
  color: #FFCC00;
  margin-bottom: 20px;
}

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

.page-about__image--cta {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: auto;
  opacity: 0.15;
  transform: rotate(15deg);
  z-index: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__title {
    font-size: 2.8em;
  }
  .page-about__subtitle {
    font-size: 1.3em;
  }
  .page-about__heading {
    font-size: 2em;
  }
  .page-about__mission-vision .page-about__container,
  .page-about__why-us .page-about__container {
    flex-direction: column;
  }
  .page-about__image-wrapper {
    order: -1; /* Image on top for mobile */
  }
}

@media (max-width: 768px) {
  .page-about__hero {
    padding: 60px 15px;
  }
  .page-about__title {
    font-size: 2.2em;
  }
  .page-about__subtitle {
    font-size: 1.1em;
  }
  .page-about__heading {
    font-size: 1.8em;
  }
  .page-about__sub-heading {
    font-size: 1.5em;
  }
  .page-about__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-about__section {
    padding: 40px 15px;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__image--cta {
    width: 200px;
    bottom: -30px;
    right: -30px;
  }
}

@media (max-width: 480px) {
  .page-about__title {
    font-size: 1.8em;
  }
  .page-about__subtitle {
    font-size: 1em;
  }
  .page-about__heading {
    font-size: 1.5em;
  }
  .page-about__sub-heading {
    font-size: 1.3em;
  }
  .page-about__text {
    font-size: 0.95em;
  }
  .page-about__list li {
    font-size: 0.95em;
  }
}