.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);
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

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

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px 40px;
}

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

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

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

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

.page-about__cta-button--primary:hover {
  background-color: #e0a53b;
}

.page-about__cta-button--secondary {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-about__cta-button--secondary:hover {
  background-color: #f0f0f0;
  border-color: #e0a53b;
}

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

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

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

.page-about__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 15px;
  width: 400px;
  height: 300px;
  object-fit: cover;
}

.page-about__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 15px;
  width: 400px;
  height: 300px;
  object-fit: cover;
}

.page-about__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 600px;
  height: 400px;
  object-fit: cover;
}

.page-about__story-mission-section, .page-about__why-choose-us-section, .page-about__responsible-gaming-section, .page-about__team-section, .page-about__future-vision-section {
  padding: 60px 0;
  overflow: hidden;
}

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

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

.page-about__value-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

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

.page-about__value-description {
  font-size: 1em;
  color: #555555;
}

.page-about__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333333;
}

.page-about__list-item {
  margin-bottom: 10px;
}

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

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

.page-about__cta-container .page-about__paragraph {
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Media Queries for responsiveness */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }

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

  .page-about__image--left, .page-about__image--right {
    float: none;
    margin: 0 auto 20px;
    width: 100%;
    max-width: 600px;
    height: auto;
  }

  .page-about__story-content, .page-about__why-choose-us-content, .page-about__future-vision-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: var(--header-offset, 120px);
  }

  .page-about__hero-content {
    padding: 80px 20px 30px;
  }

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

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

  .page-about__cta-button {
    display: block;
    margin: 10px auto;
    width: 80%;
  }

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

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

  .page-about__paragraph {
    font-size: 1em;
  }

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

  .page-about__image {
    max-width: 100%;
    height: auto;
  }

  .page-about__image--center {
    width: 100%;
    height: auto;
  }

  .page-about__list {
    margin-left: 0;
    padding-left: 20px;
  }
}

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

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

  .page-about__cta-button {
    width: 90%;
  }
}

/* Ensure content area images are responsive and not smaller than 200px */
.page-about img {
  max-width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .page-about img {
    max-width: 100% !important;
    height: auto !important;
  }
}