.page-about {
  color: #333333;
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-about__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Constrain max width for very large screens */
  margin: 0 auto;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for prominence */
  line-height: 1.2;
}

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

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

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

.page-about__button--primary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  border: 2px solid #FFD700;
}

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

.page-about__button--secondary {
  background-color: #8B0000; /* Deep Red */
  color: #FFD700; /* Gold */
  border: 2px solid #8B0000;
}

.page-about__button--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
}

.page-about__button--tertiary {
  background-color: transparent;
  color: #8B0000;
  border: 2px solid #8B0000;
}

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

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

.page-about__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Deep Red for headings */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

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

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

.page-about__story-content {
  font-size: 1.1em;
  line-height: 1.8;
}

.page-about__text {
  margin-bottom: 20px;
}

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

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

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

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

.page-about__mv-card {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #FFD700; /* Gold accent */
}

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

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

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

.page-about__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-bottom: 5px solid #8B0000; /* Deep Red accent */
}

.page-about__feature-icon {
  width: 200px; /* Min size */
  height: auto;
  margin-bottom: 20px;
}

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

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

.page-about__responsible-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-about__cta-section {
  background-color: #8B0000; /* Deep Red background */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-about__cta-title {
  font-size: 3em;
  color: #FFD700; /* Gold title */
  margin-bottom: 20px;
}

.page-about__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__story-grid,
  .page-about__mv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-about__hero-content {
    max-width: 90%;
  }
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__button {
    width: 100%;
    max-width: 300px;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__container {
    padding: 30px 15px;
  }
  .page-about__story-grid,
  .page-about__mv-grid,
  .page-about__features-grid {
    grid-template-columns: 1fr;
  }
  .page-about__feature-icon {
    max-width: 100%; /* Ensure images don't overflow */
    height: auto;
  }
  .page-about__story-image {
    max-width: 100%;
    height: auto;
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
  /* Ensure all content area images are responsive and don't overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

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