.page-about {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-about__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  padding-bottom: 80px;
  background-color: #003366; /* Main brand color for hero background */
  color: #ffffff; /* Light text for dark background */
  text-align: center;
  overflow: hidden;
}

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

.page-about__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #003366; /* Dark text on gold */
  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-button:hover {
  background-color: #e6c200;
  color: #001a33;
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Subtle background image */
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #003366; /* Main brand color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-about__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold accent */
  margin: 10px auto 0;
}

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

.page-about__story-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-about__story-image {
  flex: 1 1 45%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__story-text {
  flex: 1 1 45%;
}

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

.page-about__read-more-button {
  display: inline-block;
  background-color: #003366;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-about__read-more-button:hover {
  background-color: #004080;
}

.page-about__mission-vision-section {
  padding: 60px 0;
}

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

.page-about__mission-card, .page-about__vision-card {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-about__card-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-about__why-choose-section {
  background-color: #f0f4f8;
  padding: 60px 0;
}

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

.page-about__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-about__feature-item:hover {
  transform: translateY(-5px);
}

.page-about__feature-icon {
  width: 200px; /* Minimum size requirement */
  height: 150px; /* Minimum size requirement */
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-about__cta-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
  background-color: #FFD700;
  color: #003366;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about__cta-button:hover {
  background-color: #e6c200;
  color: #001a33;
}

.page-about__responsible-gaming-section {
  padding: 60px 0;
  text-align: center;
  background-color: #ffffff;
}

.page-about__responsible-gaming-description {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1em;
  color: #555555;
}

.page-about__learn-more-button {
  display: inline-block;
  background-color: #003366;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-about__learn-more-button:hover {
  background-color: #004080;
}

.page-about__contact-section {
  background-color: #003366;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-about__contact-description {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1em;
}

.page-about__contact-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 35px;
  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__contact-button:hover {
  background-color: #e6c200;
  color: #001a33;
}

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

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

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

  .page-about__story-content {
    flex-direction: column;
  }

  .page-about__story-image {
    max-width: 100%;
  }

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

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

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

  /* Ensure content images do not overflow on mobile */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-about__hero-button,
  .page-about__cta-button,
  .page-about__contact-button,
  .page-about__read-more-button,
  .page-about__learn-more-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-about__hero-section {
    padding-top: var(--header-offset, 120px); /* Re-assert for mobile */
    padding-bottom: 40px;
  }
}