.page-about {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
}

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

.page-about__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-about__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #F0F0F0;
}

.page-about__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

.page-about__subsection-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-about__text-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1.05em;
}

.page-about__section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

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

.page-about__image-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-about__content-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-about__bullet-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-about__bullet-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23FCBC45"><circle cx="12" cy="12" r="8"/></svg>') no-repeat left 8px;
  background-size: 16px 16px;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-about__bullet-list li strong {
  color: #000000;
}

.page-about__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

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

.page-about__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-about__button--register {
  background-color: #FCBC45;
  color: #000000;
}

.page-about__button--register:hover {
  background-color: #E0A53A;
  transform: translateY(-2px);
}

.page-about__button--download {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

.page-about__button--download:hover {
  background-color: #1a1a1a;
  border-color: #E0A53A;
  transform: translateY(-2px);
}

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

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

  .page-about__subsection-title {
    font-size: 1.6em;
  }

  .page-about__section-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-bottom: 40px;
  }

  .page-about__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-about__subsection-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-about__content-area {
    padding: 40px 15px;
  }

  .page-about__section-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Ensure all images in content area are responsive and not smaller than 200px */
  .page-about__content-image,
  .page-about__hero-image {
    max-width: 100%;
    height: auto;
  }
  
  /* Specific rule to prevent small images in content area */
  .page-about img {
    min-width: 200px;
    min-height: 200px;
  }
}

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

  .page-about__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-about__button {
    width: 100%;
  }
}