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

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

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

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

@media (min-width: 768px) {
  .page-about__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.page-about__hero {
  background: linear-gradient(135deg, #007bff, #ffc107);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-about__hero > * {
  position: relative;
  z-index: 2;
}

.page-about__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

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

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

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

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

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

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

.page-about__values .page-about__section-title {
  margin-bottom: 40px;
}

.page-about__value-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-about__value-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  /* No filter property to change image color */
}

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

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

.page-about__cta-banner {
  background: #ffc107;
  padding: 60px 0;
  text-align: center;
  color: #333;
}

.page-about__cta-content {
  max-width: 900px;
}

.page-about__cta-title {
  font-size: 2.8em;
  color: #0056b3; /* Darker blue for contrast */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #555;
}

.page-about__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-about__btn--primary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-about__btn--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

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

.page-about__btn--secondary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.page-about__btn--outline {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.page-about__btn--outline:hover {
  background-color: #007bff;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__title {
    font-size: 2.5em;
  }
  .page-about__subtitle {
    font-size: 1.2em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-about__title {
    font-size: 2em;
  }
  .page-about__subtitle {
    font-size: 1em;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__cta-text {
    font-size: 1em;
  }
}