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

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

.page-about__hero-section {
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  overflow: hidden;
  position: relative;
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
}

.page-about__hero-title {
  font-size: 3.2em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

.page-about__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px; /* Ensure buttons are large enough */
  text-align: center;
}

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

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

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

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

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

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

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

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

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 30px;
  object-fit: cover;
  min-height: 400px; /* Ensure hero image is not too small */
  border-radius: 10px;
}

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

.page-about__mission-section,
.page-about__values-section,
.page-about__responsible-gaming-section,
.page-about__cta-section {
  padding: 80px 0;
}

.page-about__mission-section {
  background-color: #ffffff;
}

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

.page-about__mission-text {
  flex: 1;
}

.page-about__mission-text p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #4d4d4d;
}

.page-about__mission-image {
  flex: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px; /* Ensure image is not too small */
  min-height: 200px; /* Ensure image is not too small */
}

.page-about__values-section {
  background-color: #f8f8f8;
}

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

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

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

.page-about__value-item p {
  color: #4d4d4d;
}

.page-about__responsible-gaming-section {
  background-color: #ffffff;
}

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

.page-about__responsible-gaming-image {
  flex: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px; /* Ensure image is not too small */
  min-height: 200px; /* Ensure image is not too small */
}

.page-about__responsible-gaming-text {
  flex: 1;
}

.page-about__responsible-gaming-text p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #4d4d4d;
}

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

.page-about__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__mission-grid,
  .page-about__responsible-gaming-content {
    flex-direction: column;
  }
  .page-about__mission-image,
  .page-about__responsible-gaming-image {
    margin-bottom: 30px;
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
}

@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: 10px;
  }
  .page-about__button {
    width: 100%;
    max-width: 300px;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__mission-section,
  .page-about__values-section,
  .page-about__responsible-gaming-section,
  .page-about__cta-section {
    padding: 60px 0;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__cta-description {
    font-size: 1.1em;
  }
  .page-about__cta-actions {
    flex-direction: column;
  }

  /* Mobile content area image constraints */
  .page-about img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
  }
}

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