.page-about {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

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

.page-about__background-dark {
  background-color: #1A1A2E;
}

.page-about__background-accent {
  background-color: #E94560;
}

.page-about__text-light {
  color: #ffffff;
}

.page-about__section-title {
  font-size: 2.8em;
  color: #E94560; /* Accent color for titles */
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #1A1A2E;
  border-radius: 2px;
}

.page-about__background-dark .page-about__section-title::after {
  background-color: #E94560;
}

.page-about__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 0;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-about__hero-container {
  position: relative;
  max-width: 1920px; /* Constrain hero container max width */
  margin: 0 auto;
}

.page-about__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  width: 90%;
  z-index: 10;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-about__hero-button,
.page-about__button-primary,
.page-about__button-secondary {
  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;
  cursor: pointer;
}

.page-about__hero-button {
  background-color: #E94560;
  color: #ffffff;
  border: 2px solid #E94560;
}

.page-about__hero-button:hover {
  background-color: #c73a52;
  transform: translateY(-3px);
}

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

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

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

.page-about__image-wrapper {
  flex: 1;
  min-width: 200px; /* Ensure images are not too small */
}

.page-about__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Global image size requirement */
  min-height: 200px; /* Global image size requirement */
  object-fit: cover;
}

.page-about__paragraph {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-about__value-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-10px);
}

.page-about__value-title {
  font-size: 1.8em;
  color: #E94560;
  margin-bottom: 15px;
}

.page-about__value-description {
  font-size: 1em;
  color: #cccccc;
}

.page-about__link-inline {
  color: #E94560;
  text-decoration: none;
  font-weight: bold;
}

.page-about__link-inline:hover {
  text-decoration: underline;
}

.page-about__advantage-subtitle {
  font-size: 2em;
  color: #E94560;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about__advantage-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-about__advantage-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23E94560"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #f0f0f0;
  font-size: 1.1em;
}

.page-about__button-primary {
  background-color: #E94560;
  color: #ffffff;
  border: 2px solid #E94560;
  margin-right: 15px;
}

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

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

.page-about__button-secondary:hover {
  background-color: #E94560;
  color: #ffffff;
  transform: translateY(-3px);
}

.page-about__button-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-about__cta-section {
  text-align: center;
}

.page-about__cta-content {
  padding: 60px 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, #E94560, #a33043);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-about__cta-title {
  font-size: 3em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }

  .page-about__section-title {
    font-size: 2.2em;
  }

  .page-about__content-flex {
    flex-direction: column;
    gap: 30px;
  }

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

  .page-about__value-title {
    font-size: 1.5em;
  }

  .page-about__advantage-subtitle {
    font-size: 1.8em;
  }
}

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

  .page-about__hero-title {
    font-size: 2.2em;
  }

  .page-about__hero-description {
    font-size: 1.1em;
  }

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

  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-about__paragraph,
  .page-about__value-description,
  .page-about__advantage-list li {
    font-size: 1em;
  }

  .page-about__value-card {
    padding: 25px;
  }

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

  .page-about__cta-description {
    font-size: 1.2em;
  }

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__button-large {
    width: 100%;
  }

  /* Mobile image scaling for content area */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }

  .page-about__hero-description {
    font-size: 0.9em;
  }

  .page-about__section-title {
    font-size: 1.5em;
  }

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

  .page-about__cta-description {
    font-size: 1em;
  }

  .page-about__value-card {
    padding: 20px;
  }

  .page-about__value-title {
    font-size: 1.3em;
  }
}