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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  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);
}

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

.page-about__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-about__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-about__story-section, .page-about__values-section, .page-about__why-us-section, .page-about__responsible-gaming-section {
  padding: 60px 20px;
  background-color: #1A1A1A; /* Auxiliary dark background */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__story-section, .page-about__why-us-section {
  flex-direction: row;
  justify-content: center;
  gap: 40px;
}

.page-about__story-section .page-about__content-wrapper, .page-about__why-us-section .page-about__content-wrapper {
  flex: 1;
  max-width: 600px;
}

.page-about__story-section .page-about__image-content, .page-about__why-us-section .page-about__image-content {
  flex: 1;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-about__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

.page-about__text-content {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.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: rgba(255, 215, 0, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 215, 0, 0.15);
}

.page-about__value-icon {
  width: 200px; /* Minimum 200px */
  height: 150px; /* Adjust height to maintain aspect ratio */
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-about__value-description {
  color: #cccccc;
  font-size: 0.95em;
}

.page-about__feature-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-about__list-item {
  background-color: rgba(255, 215, 0, 0.05);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 4px solid #FFD700;
  border-radius: 5px;
  color: #f0f0f0;
  font-size: 1.1em;
}

.page-about__list-item strong {
  color: #FFD700;
}

.page-about__button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 12px 25px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

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

.page-about__cta-section {
  background: linear-gradient(135deg, #1A1A1A, #0D0D0D);
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-about__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-about__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 18px 35px;
  font-size: 1.4em;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.page-about__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__story-section, .page-about__why-us-section {
    flex-direction: column;
    gap: 30px;
  }
  .page-about__story-section .page-about__content-wrapper, .page-about__why-us-section .page-about__content-wrapper,
  .page-about__story-section .page-about__image-content, .page-about__why-us-section .page-about__image-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 60px 15px;
  }
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-about__story-section, .page-about__values-section, .page-about__why-us-section, .page-about__responsible-gaming-section {
    padding: 40px 15px;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__text-content {
    font-size: 1em;
    text-align: left;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
  .page-about__cta-button {
    padding: 15px 30px;
    font-size: 1.2em;
  }
  /* Ensure content images do not overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
  .page-about__value-icon {
    width: 150px; /* Still greater than 200px for effective display area, but scaled down visually */
    height: auto;
  }
  .page-about__story-section .page-about__image-content, .page-about__why-us-section .page-about__image-content,
  .page-about__responsible-gaming-section .page-about__image-content {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

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