.page-about {
  color: #333333;
  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__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #1A2E40;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-about__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Constrain max width for very large screens */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability, not changing color */
}

.page-about__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #ffffff;
  max-width: 80%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-about__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.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;
  color: #1A2E40;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-about__story-section,
.page-about__mission-vision-section,
.page-about__why-choose-section,
.page-about__responsible-gaming-section,
.page-about__cta-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fcfcfc;
  border-bottom: 1px solid #eee;
}

.page-about__story-container,
.page-about__why-choose-container,
.page-about__rg-container,
.page-about__cta-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-about__story-container:nth-child(odd) {
  flex-direction: row-reverse;
}

.page-about__story-content,
.page-about__why-choose-content,
.page-about__rg-content,
.page-about__cta-content {
  flex: 1;
  min-width: 300px;
}

.page-about__story-image,
.page-about__why-choose-image,
.page-about__rg-image,
.page-about__cta-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  min-height: 200px; /* Ensure images are not too small */
}

.page-about__story-title,
.page-about__why-choose-title,
.page-about__rg-title,
.page-about__cta-title {
  font-size: 2.5em;
  color: #1A2E40;
  margin-bottom: 20px;
  text-align: left;
}

.page-about__story-paragraph,
.page-about__why-choose-list-item,
.page-about__rg-paragraph,
.page-about__cta-description {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #555555;
}

.page-about__mission-vision-section {
  background-color: #f0f0f0;
}

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

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

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

.page-about__mv-card-title {
  font-size: 1.8em;
  color: #1A2E40;
  margin-bottom: 15px;
}

.page-about__mv-card-description,
.page-about__mv-list-item {
  font-size: 1em;
  color: #666666;
  line-height: 1.7;
}

.page-about__mv-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  text-align: left;
}

.page-about__mv-list-item strong {
  color: #1A2E40;
}

.page-about__why-choose-list {
  list-style: none;
  padding: 0;
}

.page-about__why-choose-list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-about__why-choose-list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.2em;
}

.page-about__rg-button,
.page-about__cta-button {
  display: inline-block;
  background-color: #1A2E40;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.page-about__rg-button:hover,
.page-about__cta-button:hover {
  background-color: #0d1e2e;
  transform: translateY(-2px);
}

.page-about__cta-section {
  background-color: #1A2E40;
  color: #ffffff;
  text-align: center;
}

.page-about__cta-container {
  flex-direction: column;
}

.page-about__cta-image {
  filter: brightness(0.8);
  max-width: 100%;
}

.page-about__cta-title {
  color: #FFD700;
  margin-top: 30px;
  font-size: 2.8em;
}

.page-about__cta-description {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

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

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

  .page-about__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-about__story-container,
  .page-about__why-choose-container,
  .page-about__rg-container,
  .page-about__cta-container {
    flex-direction: column;
    text-align: center;
  }

  .page-about__story-image,
  .page-about__why-choose-image,
  .page-about__rg-image,
  .page-about__cta-image {
    max-width: 100%;
    height: auto;
    max-height: none; /* Remove height constraint for mobile */
    width: 100%;
    min-width: 200px;
    min-height: 200px;
  }

  .page-about__story-content,
  .page-about__why-choose-content,
  .page-about__rg-content,
  .page-about__cta-content {
    width: 100%;
    min-width: unset;
  }

  .page-about__story-title,
  .page-about__why-choose-title,
  .page-about__rg-title,
  .page-about__cta-title {
    font-size: 2em;
    text-align: center;
  }

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

  .page-about__story-container:nth-child(odd) {
    flex-direction: column;
  }

  /* Ensure no horizontal scroll for main content */
  .page-about {
    overflow-x: hidden;
  }
  .page-about__hero-section,
  .page-about__story-section,
  .page-about__mission-vision-section,
  .page-about__why-choose-section,
  .page-about__responsible-gaming-section,
  .page-about__cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

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

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

  .page-about__hero-button {
    padding: 8px 15px;
    font-size: 0.8em;
  }

  .page-about__story-title,
  .page-about__why-choose-title,
  .page-about__rg-title,
  .page-about__cta-title {
    font-size: 1.8em;
  }
}