.page-about {
  color: #333333; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-about__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #000000; /* Dark background for hero text overlay */
  color: #FFFFFF;
}

.page-about__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  object-fit: cover;
}

.page-about__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay */
  border-radius: 10px;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

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

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

.page-about__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-about__hero-button--register {
  background-color: #FCBC45; /* Login color */
  color: #000000;
}

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

.page-about__hero-button--login {
  background-color: #FFFFFF; /* Register color */
  color: #000000;
  border: 2px solid #FCBC45;
}

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

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

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

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-about__mission-vision-section {
  background-color: #f8f8f8;
  padding: 80px 0;
}

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

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

.page-about__value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-about__value-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-about__value-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-about__value-description {
  font-size: 1em;
  color: #555555;
}

.page-about__story-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-about__story-layout {
  display: flex;
  gap: 60px;
  align-items: center;
}

.page-about__story-content {
  flex: 1;
}

.page-about__story-paragraph {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 20px;
  text-align: justify;
}

.page-about__story-image-wrapper {
  flex: 1;
  min-width: 400px; /* Ensure image wrapper has a minimum width */
}

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

.page-about__read-more-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-about__read-more-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-about__commitment-section {
  background-color: #f0f0f0;
  padding: 80px 0;
}

.page-about__commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-about__commitment-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-about__commitment-icon {
  width: 250px;
  height: 160px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-about__commitment-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-about__commitment-description {
  font-size: 0.95em;
  color: #555555;
}

.page-about__why-choose-us-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-about__feature-card {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-about__feature-card:hover {
  background-color: #fffaf0; /* Light gold tint on hover */
}

.page-about__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-about__feature-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-about__feature-description {
  font-size: 1em;
  color: #555555;
}

.page-about__cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 8px 20px rgba(252, 188, 69, 0.4);
}

.page-about__cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(252, 188, 69, 0.5);
}

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

.page-about__contact-section .page-about__section-title {
  color: #FFFFFF;
}

.page-about__contact-section .page-about__section-title::after {
  background-color: #FCBC45;
}

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

.page-about__contact-methods {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.page-about__contact-link {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-about__contact-link:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

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

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

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

  .page-about__story-layout {
    flex-direction: column;
    gap: 40px;
  }

  .page-about__story-image-wrapper {
    min-width: unset;
  }
}

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

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

  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-about__container {
    padding: 30px 15px;
  }

  .page-about__values-grid, .page-about__commitment-grid, .page-about__features-grid {
    grid-template-columns: 1fr;
  }

  .page-about__value-icon, .page-about__commitment-icon, .page-about__feature-icon {
    width: 200px;
    height: 150px;
  }

  .page-about__story-paragraph {
    font-size: 0.95em;
  }

  .page-about__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-about__contact-methods {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__contact-link {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }

  /* Ensure content area images are responsive */
  .page-about img {
    max-width: 100%;
    height: auto;
  }

  .page-about__value-card img, .page-about__commitment-card img, .page-about__feature-card img, .page-about__story-image {
    max-width: 100%;
    height: auto;
    /* Specific styles to ensure minimum display size is not violated */
    min-width: 200px; /* Enforce minimum display width */
    min- /* Enforce minimum display height for aspect ratio */
    object-fit: cover;
  }
}

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

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

  .page-about__hero-content {
    padding: 15px;
  }

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