.page-about {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #0d0d0d;
}

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay for text readability */
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-about__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-about__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

.page-about__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1em;
  cursor: pointer;
}

.page-about__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #000000;
}

.page-about__button--primary:hover {
  background-color: #e6c200;
}

.page-about__button--secondary {
  background-color: #8B0000; /* Deep Red button */
  color: #ffffff;
  border: 1px solid #8B0000;
}

.page-about__button--secondary:hover {
  background-color: #6a0000;
  border-color: #6a0000;
}

.page-about__story-section, .page-about__mission-vision-section, .page-about__why-choose-us-section, .page-about__responsible-gaming-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
}

.page-about__text {
  font-size: 1.1em;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 20px auto;
  text-align: justify;
}

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

.page-about__mission-card, .page-about__vision-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.page-about__mission-vision-section .page-about__container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.page-about__mission-card, .page-about__vision-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
}

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

.page-about__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

.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: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__feature-icon {
  width: 200px; /* Minimum 200px */
  height: 150px; /* Adjust height proportionally */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-about__feature-description {
  font-size: 0.95em;
  color: #cccccc;
}

.page-about__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__mission-card, .page-about__vision-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 80px);
  }
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__button {
    width: 80%;
    max-width: 300px;
  }
  .page-about__story-section, .page-about__mission-vision-section, .page-about__why-choose-us-section, .page-about__responsible-gaming-section {
    padding: 50px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__text {
    font-size: 1em;
  }
  .page-about__feature-icon {
    max-width: 100%; /* Ensure images don't overflow */
    height: auto;
  }
  .page-about img {
    max-width: 100%; /* Important for all content images */
    height: auto; /* Maintain aspect ratio */
  }
  .page-about__feature-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.6em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__button {
    padding: 10px 20px;
  }
}