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

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

.page-about__section--dark {
  background-color: #000000; /* Main color */
  color: #ffffff;
}

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

.page-about__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px; /* Adjust based on content */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #000000; /* Fallback for hero section background */
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.page-about__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #ffffff;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

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

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

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

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

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

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

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

.page-about__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
}

.page-about__section--dark .page-about__section-title {
  color: #FCBC45;
}

.page-about__sub-title {
  font-size: 2em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #FCBC45;
}

.page-about__paragraph {
  margin-bottom: 15px;
  font-size: 1.05em;
}

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

.page-about__content-grid--reversed {
  grid-template-columns: 1fr 1fr;
}

.page-about__content-grid--reversed .page-about__image {
  order: 2;
}

.page-about__content-grid--reversed .page-about__text-content {
  order: 1;
}

.page-about__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
}

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

.page-about__value-item {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-about__value-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
}

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

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

.page-about__feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.page-about__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
}

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

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

.page-about__button--download {
  background-color: #FFFFFF; /* Register color */
  color: #000000;
}

.page-about__button--download:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.page-about__button--promo {
  background-color: #FCBC45; /* Login color for emphasis */
  color: #000000;
}

.page-about__button--promo:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

.page-about__button--contact {
  background-color: #FCBC45; /* Login color for emphasis */
  color: #000000;
}

.page-about__button--contact:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

.page-about__button--responsible {
  background-color: #FFFFFF; /* Register color */
  color: #000000;
}

.page-about__button--responsible:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.page-about__join-container {
  text-align: center;
}

.page-about__cta-buttons {
  margin-top: 40px;
}

.page-about__button--register-large {
  background-color: #FFFFFF; /* Register color */
  color: #000000;
  font-size: 1.2em;
  padding: 18px 35px;
  margin: 0 15px;
}

.page-about__button--register-large:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.page-about__button--login-large {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  font-size: 1.2em;
  padding: 18px 35px;
  margin: 0 15px;
}

.page-about__button--login-large:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__section-title {
    font-size: 2.2em;
  }
  .page-about__sub-title {
    font-size: 1.7em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    min-height: 500px;
    padding: 40px 15px;
  }
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 0 5px;
  }
  .page-about__section--padded {
    padding: 40px 15px;
  }
  .page-about__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-about__content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-about__content-grid--reversed .page-about__image {
    order: initial;
  }
  .page-about__content-grid--reversed .page-about__text-content {
    order: initial;
  }
  .page-about__values-list,
  .page-about__features-grid {
    grid-template-columns: 1fr;
  }
  .page-about__button--register-large,
  .page-about__button--login-large {
    font-size: 1em;
    padding: 15px 25px;
    margin: 10px 0;
    width: 100%;
    max-width: 300px;
  }
  .page-about__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* Content area image responsiveness for mobile */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-button {
    display: block;
    margin: 10px auto;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__value-item, .page-about__feature-card {
    padding: 20px;
  }
  .page-about__value-title, .page-about__feature-title {
    font-size: 1.5em;
  }
}