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

.page-about__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

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

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

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button 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;
  color: #FFFFFF;
}

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

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

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

.page-about__button--register:hover {
  background-color: #f0f0f0;
}

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

.page-about__button--login:hover {
  background-color: #e0a53b;
}

.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: 40px;
  position: relative;
}

.page-about__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 10px auto 0;
}

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

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

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

.page-about__mission-icon {
  width: 200px; /* Minimum 200px */
  height: 150px; /* Minimum 200px, adjust aspect ratio */
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-about__card-description {
  color: #555555;
}

.page-about__history-section {
  padding: 60px 0;
}

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

.page-about__history-image {
  width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-about__history-text {
  width: 50%;
}

.page-about__history-text p {
  margin-bottom: 20px;
  color: #333333;
}

.page-about__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
}

.page-about__button--learn-more:hover {
  background-color: #333333;
}

.page-about__responsible-gaming-section {
  background-color: #FCBC45;
  padding: 60px 0;
  text-align: center;
  color: #000000;
}

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

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

.page-about__button--responsible:hover {
  background-color: #333333;
}

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

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

.page-about__button--join-us {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 8px;
}

.page-about__button--join-us:hover {
  background-color: #e0a53b;
}

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

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

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

  .page-about__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

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

  .page-about__history-content {
    flex-direction: column;
  }

  .page-about__history-image,
  .page-about__history-text {
    width: 100%;
  }

  .page-about__hero-image,
  .page-about__mission-icon,
  .page-about__history-image,
  .page-about__container img {
    max-width: 100%;
    height: auto;
  }
}