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

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

.page-about__highlight {
  color: #007bff; /* Main brand color for highlights */
}

.page-about__hero-section {
  background: linear-gradient(135deg, #007bff, #4da3ff); /* Gradient using main color and its lighter variant */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

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

.page-about__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.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;
  margin: 0 10px;
  font-size: 1em;
  cursor: pointer;
}

.page-about__btn--primary {
  background-color: #ffc107; /* Accent color */
  color: #333; /* Dark text for contrast on bright button */
  border: 2px solid #ffc107;
}

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

.page-about__btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-about__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-about__section-title {
  font-size: 2.5em;
  color: #222;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-about__mission-section, .page-about__why-choose-section, .page-about__team-section, .page-about__cta-section {
  padding: 80px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.page-about__mission-section {
  background-color: #f0f8ff; /* Lighter shade of blue for background */
}

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

.page-about__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.page-about__image-block {
  text-align: center;
}

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

.page-about__feature-card {
  text-align: center;
  padding: 30px;
  background-color: #fdfdfd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-about__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 3px rgba(0, 123, 255, 0.3)); /* Shadow with main brand color */
}

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

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

.page-about__image-full-width {
  margin-top: 50px;
  text-align: center;
}

.page-about__cta-section {
  background-color: #007bff; /* Main brand color for CTA */
  color: #ffffff;
  text-align: center;
}

.page-about__cta-section .page-about__section-title {
  color: #ffffff;
}

.page-about__cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__grid {
    grid-template-columns: 1fr;
  }
  .page-about__image-block {
    order: -1; /* Image first on mobile for some sections */
    margin-bottom: 30px;
  }
  .page-about__mission-section .page-about__image-block {
    order: -1;
  }
  .page-about__team-section .page-about__image-block {
    order: 1;
  }
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__btn {
    padding: 10px 20px;
    margin: 5px;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__feature-title {
    font-size: 1.3em;
  }
  .page-about__cta-description {
    font-size: 1.1em;
  }
  .page-about__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .page-about__hero-section {
    padding: 60px 0;
  }
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__mission-section, .page-about__why-choose-section, .page-about__team-section, .page-about__cta-section {
    padding: 50px 0;
  }
}