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

.page-about__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background: linear-gradient(135deg, #0A2463, #1f4eb4); /* Deep blue gradient background */
  color: #ffffff;
  text-align: center;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

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

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E0B14B; /* Accent gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

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

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

.page-about__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}

.page-about__button--primary {
  background-color: #E0B14B; /* Gold accent */
  color: #0A2463;
}

.page-about__button--primary:hover {
  background-color: #f5db9c;
  transform: translateY(-3px);
}

.page-about__button--secondary {
  background-color: transparent;
  color: #E0B14B;
  border-color: #E0B14B;
}

.page-about__button--secondary:hover {
  background-color: #E0B14B;
  color: #0A2463;
  transform: translateY(-3px);
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

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

.page-about__story-section, .page-about__mission-vision-section, .page-about__why-choose-us-section, .page-about__responsible-gaming-section, .page-about__cta-section {
  padding: 60px 0;
  text-align: center;
}

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

.page-about__heading {
  font-size: 2.5em;
  color: #0A2463;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-about__paragraph {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__story-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-about__mv-grid {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-bottom: 40px;
}

.page-about__mv-item {
  flex: 1;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-about__sub-heading {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: 600;
}

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

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

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

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

.page-about__feature-title {
  font-size: 1.5em;
  color: #E0B14B; /* Gold accent for feature titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__why-choose-us-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

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

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

.page-about__cta-section {
  background-color: #0A2463;
  color: #ffffff;
  padding: 80px 0;
}

.page-about__cta-section .page-about__heading {
  color: #E0B14B;
}

.page-about__cta-section .page-about__paragraph {
  color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__heading {
    font-size: 2em;
  }
  .page-about__story-grid {
    grid-template-columns: 1fr;
  }
  .page-about__story-text, .page-about__mv-item, .page-about__feature-card {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-about__heading {
    font-size: 1.8em;
  }
  .page-about__paragraph {
    font-size: 1em;
  }
  .page-about__mv-grid {
    flex-direction: column;
  }
  /* Mobile image scaling for content area images */
  .page-about__story-image,
  .page-about__mv-image,
  .page-about__why-choose-us-image,
  .page-about__responsible-gaming-image,
  .page-about__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-about__hero-section,
  .page-about__story-section,
  .page-about__mission-vision-section,
  .page-about__why-choose-us-section,
  .page-about__responsible-gaming-section,
  .page-about__cta-section {
    padding: 40px 0;
  }
  .page-about__container {
    padding: 20px;
  }
  /* Ensure all content area images are at least 200px wide for mobile */
  .page-about__story-section img, 
  .page-about__mission-vision-section img, 
  .page-about__why-choose-us-section img, 
  .page-about__responsible-gaming-section img, 
  .page-about__hero-section img {
    min-width: 200px;
    min-height: 200px;
  }
}

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