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

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-about__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.page-about__hero-title {
  font-size: 3.2em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-about__button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-about__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
}

.page-about__button--register {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

.page-about__button--register:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-about__button--login {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-about__button--login:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-about__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-about__section--mission {
  background-color: #f8f8f8;
}

.page-about__section--values {
  background-color: #FFFFFF;
}

.page-about__section--why-us {
  background-color: #f8f8f8;
}

.page-about__section-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 30px;
}

.page-about__text-content {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 40px;
}

.page-about__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

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

.page-about__value-card {
  background-color: #000000;
  color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

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

.page-about__card-title {
  font-size: 1.5em;
  color: #FCBC45;
  margin-bottom: 15px;
}

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

.page-about__feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 40px;
}

.page-about__feature-item {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-about__feature-item::before {
  content: '✔';
  color: #FCBC45;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-about__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

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

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

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

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

  .page-about__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__button {
    width: 80%;
    max-width: 300px;
  }

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

  .page-about__text-content,
  .page-about__card-description,
  .page-about__feature-item {
    font-size: 0.95em;
  }

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

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

  /* Ensure content images are responsive and not too small */
  .page-about__image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-about__hero-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

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

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

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

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

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