/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text for general content on dark background */
  background-color: #003366; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-about__hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0;
  min-height: 500px;
  overflow: hidden;
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Darker gradient for depth */
}

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

.page-about__hero-title {
  font-size: 3.5em;
  color: #FFCC00; /* Gold for main title */
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-about__btn--primary {
  background-color: #FFCC00; /* Gold button background */
  color: #003366; /* Dark blue text on gold */
}

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

.page-about__btn--secondary {
  background-color: #003366; /* Dark blue button background */
  color: #FFCC00; /* Gold text on dark blue */
  border: 2px solid #FFCC00;
}

.page-about__btn--secondary:hover {
  background-color: #002244; /* Slightly darker blue on hover */
  transform: translateY(-2px);
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #FFCC00; /* Gold for section titles */
  margin-bottom: 40px;
  position: relative;
}

.page-about__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-about__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-about__content-grid--reverse {
  grid-template-areas: "image text";
}

.page-about__content-grid--reverse .page-about__text-content {
  grid-area: text;
}

.page-about__content-grid--reverse .page-about__image-wrapper {
  grid-area: image;
}

.page-about__text-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0; /* Lighter white for readability */
}

.page-about__image-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-about__image {
  width: 100%;
  height: auto;
  display: block;
}

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

.page-about__value-item {
  background-color: #002244; /* Slightly lighter dark blue for value cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-about__value-title {
  font-size: 1.5em;
  color: #FFCC00; /* Gold for value titles */
  margin-bottom: 15px;
}

.page-about__value-item p {
  color: #CCCCCC; /* Light gray for value descriptions */
}

.page-about__section--cta {
  background-color: #FFCC00; /* Gold background for CTA section */
  color: #003366; /* Dark blue text on gold background */
  padding: 80px 0;
}

.page-about__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #003366; /* Dark blue for CTA title */
}

.page-about__cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #333333; /* Darker text for better contrast on gold */
}

.page-about__cta-content .page-about__btn--primary {
  background-color: #003366; /* Dark blue button on gold background */
  color: #FFCC00; /* Gold text on dark blue */
}

.page-about__cta-content .page-about__btn--primary:hover {
  background-color: #001a33; /* Even darker blue on hover */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__content-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-about__content-grid--reverse {
    grid-template-areas: unset;
  }
  .page-about__content-grid--reverse .page-about__text-content {
    grid-area: unset;
  }
  .page-about__content-grid--reverse .page-about__image-wrapper {
    grid-area: unset;
  }
  .page-about__image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
  .page-about__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-about__hero {
    padding: 80px 0;
    min-height: 400px;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section {
    padding: 60px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__btn {
    padding: 12px 25px;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-about__hero {
    padding: 60px 0;
  }
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-description {
    font-size: 0.9em;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
}