.page-about {
  background-color: #100224; /* WOW88 main background */
  color: #FFFFFF;
  font-family: 'Roboto', sans-serif; /* Assuming Roboto-like font */
  line-height: 1.6;
}

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 40px;
  background-color: #100224; /* Match main background */
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Max width for the image */
  margin-bottom: 30px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-about__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-about__main-title {
  font-size: 2.5em; /* Using em for relative sizing */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #26A9E0; /* Primary color for main title */
}

.page-about__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-about__cta-button--login {
  background-color: #EA7C07; /* Login color */
  color: #FFFFFF;
}

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

.page-about__section {
  padding: 60px 20px;
}

.page-about__section:nth-of-type(even) {
  background-color: #1a0333; /* Slightly lighter purple for alternating sections */
}

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

.page-about__section-title {
  font-size: 2em;
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
}

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

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

.page-about__text-block,
.page-about__image-block {
  flex: 1;
}

.page-about__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

.page-about__values-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #FFFFFF;
}

.page-about__values-list li strong {
  color: #26A9E0;
}

.page-about__values-list li::before {
  content: '✔';
  color: #26A9E0;
  position: absolute;
  left: 0;
  top: 0;
}

.page-about__link-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  margin-right: 15px;
  border: 2px solid #26A9E0;
  color: #26A9E0;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about__link-button:hover {
  background-color: #26A9E0;
  color: #100224;
}

.page-about__cta-section {
  background: linear-gradient(90deg, #26A9E0, #100224); /* Gradient background for CTA */
  text-align: center;
  padding: 80px 20px;
}

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

.page-about__cta-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}

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

.page-about__cta-button--register {
  background-color: #EA7C07; /* Login color */
  color: #FFFFFF;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__main-title {
    font-size: 2em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__content-grid {
    flex-direction: column;
  }
  .page-about__content-grid--reverse {
    flex-direction: column; /* Keep column for reverse on mobile */
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-bottom: 30px;
  }
  .page-about__main-title {
    font-size: 1.8em;
  }
  .page-about__intro-text {
    font-size: 1em;
  }
  .page-about__section {
    padding: 40px 15px;
  }
  .page-about__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-about__cta-button {
    padding: 12px 25px;
  }
  .page-about__image {
    max-width: 100%;
    height: auto; /* Required for mobile overflow */
  }
  .page-about__text-block p,
  .page-about__values-list li {
    font-size: 0.95em;
  }
  /* Ensure content images are not smaller than 200px display-wise */
  .page-about__image {
    width: 100%; /* Ensure it fills container */
    height: auto;
    min-width: 200px; /* Still enforce min size */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: 1.5em;
  }
  .page-about__section-title {
    font-size: 1.4em;
  }
  .page-about__cta-title {
    font-size: 1.6em;
  }
  .page-about__cta-button {
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-about__link-button {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}