.page-about {
  color: #333333; /* Dark text for default white body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

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

.page-about__hero-section {
  background-color: #007bff; /* Main brand color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-about__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffc107; /* Auxiliary color for emphasis */
  line-height: 1.2;
}

.page-about__intro-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color for buttons */
  color: #007bff; /* Main brand color for text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #007bff; /* Main brand color */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-about__story-section, .page-about__mission-section, .page-about__why-choose-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-about__story-section {
  background-color: #ffffff;
}

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

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

.page-about__text-content {
  flex: 1;
}

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

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

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

.page-about__values-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-about__values-list li {
  background-color: #e9f5ff; /* Light background for list items */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #007bff; /* Main brand color accent */
  border-radius: 5px;
  font-size: 1.1em;
}

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

.page-about__advantage-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-about__advantage-card:hover {
  transform: translateY(-5px);
}

.page-about__card-image {
  width: 100%;
  height: auto;
  max-width: 300px;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

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

.page-about__card-description {
  font-size: 1em;
  color: #555555;
}

.page-about__cta-section {
  background-color: #007bff; /* Main brand color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-about__cta-title {
  font-size: 2.8em;
  color: #ffc107; /* Auxiliary color */
  margin-bottom: 20px;
}

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

.page-about__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-about__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__main-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__content-wrapper {
    flex-direction: column;
  }
  .page-about__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-about__image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-about {
    padding-top: var(--header-offset, 120px); /* Mobile header offset */
  }
  .page-about__hero-section {
    padding: 60px 20px;
  }
  .page-about__main-title {
    font-size: 2.2em;
  }
  .page-about__intro-text {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__text-content p {
    font-size: 1em;
  }
  .page-about__values-list li {
    font-size: 1em;
  }
  .page-about__advantages-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
  /* Ensure content images do not overflow on mobile */
  .page-about__container img, .page-about__image, .page-about__card-image {
    max-width: 100%;
    height: auto;
  }
  .page-about__image--full-width {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: 1.8em;
  }
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}