.page-about {
  font-family: Arial, sans-serif;
  color: #FFFFFF;
  background-color: #100224; /* WOW88 style deep purple-black */
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
  background-color: #26A9E0; /* Main brand color for hero background */
  background: linear-gradient(135deg, #26A9E0, #1a7bbd); /* Gradient for hero */
}

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

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

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

.page-about__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.page-about__hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-height: 44px; /* Ensure touch target size */
}

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

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

.page-about__section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.page-about__mission-text {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #d0d0d0;
}

.page-about__mission-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.page-about__mission-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__offerings-section {
  padding: 0 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

.page-about__offering-card {
  background-color: #1a0a38; /* Slightly lighter background for cards */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-about__offering-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: cover;
}

.page-about__offering-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-about__offering-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #c0c0c0;
}

.page-about__cta-button--explore {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: none;
}

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

.page-about__commitment-section {
  padding: 0 20px 60px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.page-about__commitment-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 20px;
}

.page-about__cta-button--learn-more {
  background-color: #83a1f2; /* Blue pill button */
  color: #FFFFFF;
  border: none;
}

.page-about__cta-button--learn-more:hover {
  background-color: #688cec;
  transform: translateY(-2px);
}

.page-about__contact-cta-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #0d011f; /* Darker background for emphasis */
}

.page-about__contact-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-button--contact {
  background-color: #EA7C07; /* Re-use login color for contact CTA */
  color: #FFFFFF;
  border: none;
}

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

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-about__hero-section {
    padding: 30px 15px;
  }

  .page-about__main-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem); /* Clamp for H1 */
  }

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

  .page-about__section-title {
    font-size: 1.8rem;
    padding-top: 40px;
  }

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

  .page-about__mission-text, .page-about__mission-image-wrapper {
    flex: none;
    width: 100%;
  }

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

  .page-about__offering-title {
    font-size: 1.2rem;
  }

  .page-about__offering-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .page-about img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .page-about__hero-image-wrapper, .page-about__mission-image-wrapper {
    padding: 0;
  }
  .page-about__hero-image, .page-about__mission-image, .page-about__offering-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 549px) {
  .page-about__hero-section {
    padding: 20px 10px;
  }

  .page-about__main-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-about__hero-description {
    font-size: 0.95rem;
  }

  .page-about__section-title {
    font-size: 1.5rem;
    padding-top: 30px;
  }

  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .page-about__offerings-list {
    grid-template-columns: 1fr;
  }
}

/* Ensure content area images are not smaller than 200px */
.page-about img:not(.shared-header img):not(.shared-footer img) {
  min-width: 200px;
  min-height: 200px;
}

.page-about .page-about__hero-image, 
.page-about .page-about__mission-image, 
.page-about .page-about__offering-image {
  width: 100%; /* Ensures images scale within their containers */
  height: auto; /* Maintains aspect ratio */
  object-fit: cover;
}

/* Ensure no image filters are applied */
.page-about img {
  filter: none;
}