.page-about {
  color: #ffffff; /* Body background #0a0a0a (dark), so use light text */
  padding-top: 120px; /* Desktop: Ensure content is not hidden by fixed header */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-about__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color, #FFD700);
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-about__section-subtitle {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
}

.page-about__hero-section {
  background: linear-gradient(135deg, var(--primary-color-dark, #8B0000) 0%, var(--primary-color, #FFD700) 100%);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-about__hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-about__hero-description {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background: var(--primary-color, #FFD700);
  color: #0a0a0a; /* Ensure strong contrast with gold */
  border: 2px solid var(--primary-color, #FFD700);
}

.page-about__btn-primary:hover {
  background: var(--primary-color-dark, #ccaa00);
  color: #000000;
  border-color: var(--primary-color-dark, #ccaa00);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-about__btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-about__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-about__story-section,
.page-about__responsible-gambling-section,
.page-about__faq-section {
  padding: 60px 0;
}

.page-about__section--dark {
  background-color: #1a1a1a;
}

.page-about__story-content,
.page-about__responsible-content {
  font-size: 16px;
  line-height: 1.8;
  color: #f0f0f0;
  text-align: justify;
}

.page-about__story-content p,
.page-about__responsible-content p {
  margin-bottom: 20px;
}

.page-about__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__image-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-about__feature-card {
  background: rgba(255, 255, 255, 0.08); /* Light transparent background for dark body */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__feature-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-about__feature-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-about__feature-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color, #FFD700);
  margin-bottom: 15px;
}

.page-about__feature-description {
  font-size: 15px;
  color: #f0f0f0;
}

.page-about__vision-mission-section {
  padding: 60px 0;
  background-color: #0a0a0a;
}

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

.page-about__vision-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__vision-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-about__card-image {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-about__card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color, #FFD700);
  margin-bottom: 15px;
}

.page-about__card-description,
.page-about__value-list {
  font-size: 16px;
  color: #f0f0f0;
  line-height: 1.7;
}

.page-about__value-list {
  list-style: disc inside;
  text-align: left;
  padding-left: 20px;
}

.page-about__value-list li {
  margin-bottom: 10px;
}

/* FAQ Section */
.page-about__faq-section {
  padding: 60px 0;
}

.page-about__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-about__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: #f0f0f0; /* Light text for dark background */
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 2000px !important; /* Ensure enough space */
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter background for expanded answer */
  border-radius: 0 0 5px 5px;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-about__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.page-about__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-about__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color, #FFD700);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-about__faq-item.active .page-about__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Change to a 'x' or rotate to indicate collapse */
}

.page-about__cta-section {
  background: linear-gradient(135deg, var(--primary-color, #FFD700) 0%, var(--primary-color-dark, #8B0000) 100%);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-about__btn-large {
  padding: 18px 45px;
  font-size: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 40px;
  }
  .page-about__section-title {
    font-size: 30px;
  }
  .page-about__feature-title {
    font-size: 20px;
  }
  .page-about__card-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .page-about {
    padding-top: 100px !important; /* Mobile: Ensure content is not hidden by fixed header */
    font-size: 16px;
    line-height: 1.6;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__hero-section,
  .page-about__story-section,
  .page-about__why-choose-section,
  .page-about__responsible-gambling-section,
  .page-about__vision-mission-section,
  .page-about__faq-section,
  .page-about__cta-section {
    padding: 40px 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-about__hero-title {
    font-size: 32px;
  }
  .page-about__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-about__section-title {
    font-size: 26px;
    padding-top: 20px;
  }
  .page-about__section-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-about__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about__btn-large,
  .page-about a[class*="button"],
  .page-about a[class*="btn"] {
    padding: 12px 25px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__features-grid,
  .page-about__vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__feature-card,
  .page-about__vision-card {
    padding: 20px;
  }
  .page-about__feature-title {
    font-size: 18px;
  }
  .page-about__card-title {
    font-size: 20px;
  }
  .page-about__image-full-width,
  .page-about__image-responsive,
  .page-about__feature-image,
  .page-about__card-image,
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .page-about__faq-question {
    padding: 15px;
  }
  .page-about__faq-question h3 {
    font-size: 16px;
  }
  .page-about__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-about__faq-item.active .page-about__faq-answer {
    padding: 15px !important;
  }
}