.page-about {
  font-family: Arial, sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #FFFFFF;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

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

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  background-color: #0a0909; /* Dark background for contrast */
  padding-bottom: 40px;
  color: #FFFFFF;
}

.page-about__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: none; /* Ensure no filter is applied */
}

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

.page-about__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-about__intro-text {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-about__cta-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;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

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

.page-about__section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
  padding-top: 20px;
}

.page-about__mission-vision-section,
.page-about__values-section,
.page-about__contact-cta-section {
  padding: 40px 0;
}

.page-about__mission-vision-section {
  background-color: #f8f8f8;
}

.page-about__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-about__sub-title {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-about__text-block p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.page-about__image-block {
  text-align: center;
}

.page-about__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  filter: none; /* Ensure no filter is applied */
  min-width: 200px;
  min-height: 200px;
}

.page-about__values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-about__value-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-about__value-title {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #EA7C07;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-about__value-item p {
  font-size: 0.95rem;
  color: #555555;
}

.page-about__contact-cta-section {
  background-color: #0a0909;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 0;
}

.page-about__contact-content {
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-about__contact-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-about__cta-button--contact {
  background-color: #26A9E0;
  color: #FFFFFF;
}

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

.page-about__contact-image {
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-about__content-grid {
    grid-template-columns: 1fr;
  }
  .page-about__image-block {
    order: -1; /* Image appears above text on mobile */
    margin-bottom: 30px;
  }
  .page-about__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .page-about__intro-text {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
  }
  .page-about__section-title {
    font-size: clamp(1.3rem, 5vw, 2.2rem);
  }
  .page-about__sub-title {
    font-size: clamp(1.1rem, 4vw, 1.6rem);
  }
  .page-about__values-list {
    grid-template-columns: 1fr;
  }
  .page-about__contact-cta-section .page-about__container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-about__contact-image {
    order: -1; /* Image above text for contact section on mobile */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__hero-content {
    padding: 15px;
  }
  .page-about__content-image {
    max-width: 100%;
    height: auto;
  }
  .page-about__hero-image {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure all content area images are responsive and not smaller than 200px */
.page-about img {
  max-width: 100%;
  height: auto;
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-about img {
    max-width: 100% !important;
    height: auto !important;
  }
}