.page-about {
  color: #333333; /* Dark text for light background */
  background-color: var(--background-color, #FFFFFF); /* Ensure light background for main content */
}

.page-about__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  overflow: hidden;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: 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: #FCBC45;
  line-height: 1.2;
}

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

.page-about__hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.page-about__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-about__button--register {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-about__button--register:hover {
  background-color: #e0a73b;
  transform: translateY(-2px);
}

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

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

.page-about__section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.page-about__content-block {
  flex: 1;
}

.page-about__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-about__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 25px;
  text-align: left;
  position: relative;
}

.page-about__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FCBC45;
  margin-top: 10px;
}

.page-about__text {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333333;
}

.page-about__values-list {
  list-style: none;
  padding: 0;
}

.page-about__value-item {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  color: #333333;
}

.page-about__value-item::before {
  content: '✔️'; /* Checkmark icon */
  position: absolute;
  left: 0;
  color: #FCBC45;
}

.page-about__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 20px;
}

.page-about__button--learn-more:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

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

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

.page-about__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-about__button--cta {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  font-size: 1.2em;
  padding: 15px 35px;
}

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

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

@media (max-width: 768px) {
  .page-about__hero-section {
    min-height: 400px;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-about__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-about__container {
    flex-direction: column;
    text-align: center;
  }
  .page-about__container--reverse {
    flex-direction: column;
  }
  .page-about__content-block, .page-about__image-block {
    width: 100%;
  }
  .page-about__section-title {
    font-size: 1.8em;
    text-align: center;
  }
  .page-about__section-title::after {
    margin-left: auto;
    margin-right: auto;
  }
  .page-about__value-item {
    padding-left: 0;
    text-align: left;
  }
  .page-about__value-item::before {
    left: 50%;
    transform: translateX(-50%);
    top: -5px;
  }
  .page-about__values-list {
    text-align: center;
  }
  .page-about__image {
    max-width: 100%; /* Ensure images don't overflow */
    height: auto; /* Maintain aspect ratio */
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__button--cta {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__hero-content {
    padding: 15px;
  }
}