.page-about {
  padding-top: var(--header-offset, 120px);
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* White background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF; /* Light text for dark background */
  position: relative;
  overflow: hidden;
}

.page-about__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login color for emphasis */
}

.page-about__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

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

.page-about__register-btn {
  background-color: #FFFFFF; /* Register color */
  color: #000000; /* Dark text for light button */
}

.page-about__register-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-about__login-btn {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for light button */
}

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

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

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

.page-about__section-title {
  font-size: 2.5em;
  color: #000000; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-about__mission-section,
.page-about__values-section,
.page-about__why-choose-section {
  padding: 40px 0;
}

.page-about__mission-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-about__mission-image {
  width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure minimum size */
}

.page-about__text {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
}

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

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

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

.page-about__card-title {
  font-size: 1.5em;
  color: #000000; /* Main color */
  margin-bottom: 15px;
}

.page-about__why-choose-content {
  display: flex;
  flex-direction: row-reverse; /* Image on right */
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-about__why-choose-image {
  width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure minimum size */
}

.page-about__cta-wrapper {
  text-align: center;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-about__cta-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Light text */
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-about__cta-btn:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-about__link {
  color: #FCBC45; /* Login color for links */
  text-decoration: none;
  font-weight: bold;
}

.page-about__link:hover {
  text-decoration: underline;
}

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

.page-about__cta-final-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login color for emphasis */
}

.page-about__cta-final-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-about__join-now-btn {
  display: inline-block;
  padding: 18px 40px;
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for light button */
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-about__join-now-btn:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__mission-content,
  .page-about__why-choose-content {
    flex-direction: column;
    text-align: center;
  }
  .page-about__mission-image,
  .page-about__why-choose-image {
    width: 80%;
    margin-bottom: 20px;
  }
  .page-about__cta-final-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 40px 15px 30px;
  }
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__register-btn,
  .page-about__login-btn {
    width: 100%;
    padding: 12px 20px;
  }
  .page-about__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-about__mission-content,
  .page-about__why-choose-content {
    gap: 20px;
  }
  .page-about__mission-image,
  .page-about__why-choose-image {
    max-width: 100%; /* Ensure mobile images don't overflow */
    height: auto; /* Maintain aspect ratio */
    min-width: 200px; /* Still enforce minimum size */
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__cta-btn {
    width: 100%;
  }
  .page-about__cta-final-title {
    font-size: 1.8em;
  }
  .page-about__cta-final-description {
    font-size: 1.1em;
  }
  .page-about__join-now-btn {
    width: 100%;
    padding: 15px 30px;
  }
  /* Ensure content area images are responsive and not too small */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
  .page-about__mission-image, .page-about__why-choose-image {
    min-width: 200px; /* Enforce min width */
    width: 100%; /* Make them fill width */
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__card-title {
    font-size: 1.3em;
  }
  .page-about__cta-final-title {
    font-size: 1.6em;
  }
}