/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #343a40; /* Dark grey for body text */
}

.page-about__hero-section {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

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

.page-about__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__btn--primary {
  background-color: #0056b3; /* Darker blue for contrast */
  color: #ffffff;
  border: 2px solid #0056b3;
}

.page-about__btn--primary:hover {
  background-color: #003f7f;
  transform: translateY(-2px);
}

.page-about__btn--secondary {
  background-color: #218838; /* Darker green for contrast */
  color: #ffffff;
  border: 2px solid #218838;
  margin-left: 15px;
}

.page-about__btn--secondary:hover {
  background-color: #1a6f2e;
  transform: translateY(-2px);
}

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

.page-about__section--alt-bg {
  background-color: #f8f9fa; /* Light grey background */
}

.page-about__section-title {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-about__section p {
  font-size: 1.1em;
  margin-bottom: 15px;
}

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

.page-about__content-flex--reverse {
  flex-direction: row-reverse;
}

.page-about__text-content {
  flex: 1;
  min-width: 300px;
}

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

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

.page-about__image--full-width {
  margin-top: 30px;
  width: 100%;
}

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

.page-about__list li {
  background-color: #e9f7ef; /* Light green for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #28a745;
  border-radius: 5px;
  font-size: 1.1em;
  color: #218838; /* Darker green text */
}

.page-about__list li strong {
  color: #0056b3; /* Darker blue for emphasis */
}

.page-about__section--cta {
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-about__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

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

.page-about__cta-buttons .page-about__btn {
  margin: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__content-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-about__content-flex--reverse {
    flex-direction: column;
  }
  .page-about__text-content, .page-about__image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-about__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-about__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-about__btn--secondary {
    margin-left: 0;
    margin-top: 10px;
  }
  .page-about__list li {
    font-size: 1em;
    padding: 12px 15px;
  }
}