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

.page-about__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* For desktop */
}

.page-about__hero-container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text contrast */
}

.page-about__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 80%;
  z-index: 1;
}

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

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #FFFFFF;
}

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

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

.page-about__hero-button--primary {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-about__hero-button--primary:hover {
  background-color: #f0f0f0;
  color: #000000;
}

.page-about__hero-button--secondary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-about__hero-button--secondary:hover {
  background-color: #e0a53a;
  color: #000000;
}

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

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

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

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

.page-about__story-text p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333333;
}

.page-about__story-image-wrapper {
  text-align: center;
}

.page-about__story-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

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

.page-about__value-card {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-10px);
}

.page-about__value-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
}

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

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

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

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

.page-about__why-choose-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-about__why-choose-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #000000;
}

.page-about__why-choose-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-about__why-choose-cta {
  text-align: center;
  margin-top: 50px;
}

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

.page-about__responsible-gaming-card {
  background-color: #f0f0f0;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.page-about__responsible-gaming-title {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-about__responsible-gaming-title a {
  color: #000000;
  text-decoration: none;
}

.page-about__responsible-gaming-title a:hover {
  text-decoration: underline;
}

.page-about__responsible-gaming-description {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #555555;
}

.page-about__responsible-gaming-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-about__responsible-gaming-button:hover {
  background-color: #e0a53a;
}

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

.page-about__cta-content {
  max-width: 900px;
}

.page-about__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

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

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }

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

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

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

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

  .page-about__hero-button {
    width: 80%;
    max-width: 300px;
  }

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

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

  .page-about__story-image {
    margin-top: 30px;
  }

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

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

  /* Ensure all content area images are responsive and do not overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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

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

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

  .page-about__story-text p {
    font-size: 0.95em;
  }

  .page-about__value-title,
  .page-about__why-choose-title {
    font-size: 1.3em;
  }

  .page-about__value-description,
  .page-about__why-choose-description {
    font-size: 0.9em;
  }

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

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

  .page-about__cta-description {
    font-size: 1.1em;
  }
}