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

.page-about__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  padding: 40px 20px;
}

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

.page-about__hero-container {
  max-width: 900px;
  z-index: 1;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent dark background for text readability */
  border-radius: 10px;
}

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

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

.page-about__hero-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold primary color for button */
  color: #8B0000; /* Dark red auxiliary color for text */
  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;
}

.page-about__hero-cta-button:hover {
  background-color: #e6c200;
  color: #5a0000;
}

.page-about__story-section, .page-about__mission-values-section, .page-about__responsible-gaming-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__story-section:nth-of-type(even) {
  flex-direction: column-reverse;
}

.page-about__story-content, .page-about__mission-values-container, .page-about__responsible-gaming-content {
  flex: 1;
  padding: 20px;
}

.page-about__story-image, .page-about__mission-values-image, .page-about__responsible-gaming-image {
  flex: 1;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-about__story-title, .page-about__mission-values-title, .page-about__why-choose-us-title, .page-about__responsible-gaming-title, .page-about__cta-title {
  font-size: 2.5em;
  color: #8B0000; /* Dark red auxiliary color for titles */
  margin-bottom: 25px;
  text-align: center;
}

.page-about__story-paragraph, .page-about__mission-values-intro, .page-about__responsible-gaming-paragraph, .page-about__cta-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 15px;
  text-align: justify;
}

.page-about__values-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-about__values-list-item {
  background-color: #fff;
  border-left: 5px solid #FFD700; /* Gold accent */
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #333333;
  font-size: 1.1em;
}

.page-about__values-list-item strong {
  color: #8B0000; /* Dark red for emphasis */
}

.page-about__why-choose-us-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
}

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

.page-about__advantage-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-about__advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-about__advantage-card-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold primary color for card titles */
  margin-bottom: 15px;
}

.page-about__advantage-card-description {
  color: #666666;
  font-size: 1em;
}

.page-about__responsible-gaming-button {
  display: inline-block;
  background-color: #8B0000; /* Dark red auxiliary color for button */
  color: #ffffff; /* White text for contrast */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-top: 25px;
  transition: background-color 0.3s ease;
}

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

.page-about__cta-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  margin: 60px auto;
  padding: 40px 20px;
  border-radius: 10px;
}

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

.page-about__cta-container {
  max-width: 800px;
  z-index: 1;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background for text readability */
  border-radius: 10px;
}

.page-about__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold primary color for CTA title */
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-about__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold primary color for button */
  color: #8B0000; /* Dark red auxiliary color for text */
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  margin-top: 30px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about__cta-button:hover {
  background-color: #e6c200;
  color: #5a0000;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__story-title, .page-about__mission-values-title, .page-about__why-choose-us-title, .page-about__responsible-gaming-title, .page-about__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    min-height: 400px;
    padding: 30px 15px;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__story-section, .page-about__mission-values-section, .page-about__responsible-gaming-section {
    flex-direction: column;
    margin: 40px auto;
    padding: 30px 15px;
  }
  .page-about__story-image, .page-about__mission-values-image, .page-about__responsible-gaming-image {
    margin-top: 20px;
  }
  .page-about__story-title, .page-about__mission-values-title, .page-about__why-choose-us-title, .page-about__responsible-gaming-title, .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__story-paragraph, .page-about__mission-values-intro, .page-about__responsible-gaming-paragraph, .page-about__cta-description {
    font-size: 0.95em;
  }
  .page-about__advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__advantage-card {
    padding: 20px;
  }
  .page-about__advantage-card-title {
    font-size: 1.3em;
  }
  .page-about__cta-section {
    min-height: 300px;
    padding: 30px 15px;
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
  .page-about__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Mobile content area image constraint */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure no image filtering for color change */
  .page-about__hero-image, .page-about__cta-image {
    filter: brightness(0.7); /* Only brightness allowed, not color altering filters */
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__story-title, .page-about__mission-values-title, .page-about__why-choose-us-title, .page-about__responsible-gaming-title, .page-about__cta-title {
    font-size: 1.5em;
  }
  .page-about__hero-cta-button, .page-about__responsible-gaming-button, .page-about__cta-button {
    width: 100%;
    box-sizing: border-box;
  }
}