.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); /* Ensures content is not hidden by fixed header */
}

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

.page-about__hero-section {
  background-color: #f0f0f0; /* Slightly off-white for hero background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-about__hero-content {
  max-width: 800px;
  margin-bottom: 30px;
}

.page-about__main-title {
  font-size: 3.2em;
  color: #8B0000; /* Auxiliary color for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-about__intro-text {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
}

.page-about__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Main brand color for primary button */
  color: #8B0000; /* High contrast text for button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__hero-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 1000px; /* Constrain hero image width */
  margin-top: 40px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-about__story-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

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

.page-about__story-text p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444444;
}

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

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

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

.page-about__mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.page-about__card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-about__card-title {
  font-size: 1.8em;
  color: #FFD700; /* Main brand color for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__card p {
  color: #666666;
  margin-bottom: 20px;
}

.page-about__card-icon {
  max-width: 250px;
  height: auto;
  display: block;
  margin: 0 auto;
}

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

.page-about__values-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-about__value-item {
  background-color: #fff8e1; /* Light gold background for list items */
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333333;
}

.page-about__value-item span {
  font-weight: bold;
  color: #8B0000; /* Auxiliary color for bold text */
}

.page-about__values-button {
  display: inline-block;
  background-color: #8B0000; /* Auxiliary color for button */
  color: #FFD700; /* High contrast text for button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.page-about__values-button:hover {
  background-color: #6a0000; /* Slightly darker red on hover */
  transform: translateY(-2px);
}

.page-about__cta-section {
  background-color: #8B0000; /* Auxiliary color for CTA background */
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-about__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Main brand color for CTA title */
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__cta-button--primary {
  background-color: #FFD700; /* Main brand color */
  color: #8B0000; /* Auxiliary color for text */
}

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

.page-about__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700; /* Border in main brand color */
  color: #FFD700;
}

.page-about__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: 2.8em;
  }
  .page-about__story-grid {
    grid-template-columns: 1fr;
  }
  .page-about__story-image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
  }
  .page-about__mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-about__main-title {
    font-size: 2.2em;
  }
  .page-about__intro-text {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__card-title {
    font-size: 1.5em;
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
  .page-about__hero-button, .page-about__values-button, .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__cta-buttons {
    flex-direction: column;
  }
  /* Ensure content images are responsive and not too small */
  .page-about__story-image, .page-about__card-icon, .page-about__hero-image {
    max-width: 100%;
    height: auto;
  }
  /* Enforce minimum display size for all content images */
  .page-about img:not(.shared-header__logo):not(.shared-footer__payment-icon):not(.shared-footer__social-icon):not(.shared-footer__game-provider-icon) {
    min-width: 200px;
    min-height: 200px;
    width: auto; /* Allow auto width to maintain aspect ratio with min-width */
    height: auto; /* Allow auto height to maintain aspect ratio with min-height */
  }
}

@media (max-width: 480px) {
  .page-about__hero-section, .page-about__story-section, .page-about__mission-vision-section, .page-about__values-section, .page-about__cta-section {
    padding: 40px 15px;
  }
  .page-about__main-title {
    font-size: 1.8em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__hero-button, .page-about__values-button, .page-about__cta-button {
    padding: 10px 20px;
    font-size: 0.95em;
  }
}