/* style/about.css */

.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-about__hero {
  background: linear-gradient(135deg, #1A2E5B 0%, #3a508b 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  justify-content: center;
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-about__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FF8C00; /* Accent color for title */
  font-weight: bold;
}

.page-about__subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

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

.page-about__btn--primary {
  background-color: #FF8C00; /* Accent color */
  color: #1A2E5B; /* Dark text for contrast */
  border: 2px solid #FF8C00;
}

.page-about__btn--primary:hover {
  background-color: #e67e00;
  transform: translateY(-3px);
}

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

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
}

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

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

.page-about__heading {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #1A2E5B; /* Main color for headings */
  font-weight: bold;
}

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

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

.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: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #FF8C00; /* Accent color for icons */
}

.page-about__value-title {
  font-size: 1.5em;
  color: #1A2E5B;
  margin-bottom: 15px;
}

.page-about__value-text {
  font-size: 1em;
  color: #555;
}

.page-about__cta-bottom {
  background-color: #1A2E5B; /* Main color */
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-about__cta-heading {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FF8C00; /* Accent color */
}

.page-about__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__btn--secondary {
  background-color: #FF8C00; /* Accent color */
  color: #1A2E5B; /* Dark text for contrast */
  border: 2px solid #FF8C00;
}

.page-about__btn--secondary:hover {
  background-color: #e67e00;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__title {
    font-size: 2.5em;
  }

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

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

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

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

  .page-about__cta-heading {
    font-size: 2.2em;
  }

  .page-about__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-about__hero {
    padding: 60px 0;
  }

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

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

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

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

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

  .page-about__cta-heading {
    font-size: 1.8em;
  }
}