.page-about-us {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main for dark body background */
  background-color: #0A0A0A; /* Body background */
}

.page-about-us__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-about-us__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #0A0A0A; /* Ensures consistent background */
}

.page-about-us__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 20px; /* Separates image from text block */
}

.page-about-us__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-about-us__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  color: #F2C14E; /* Primary color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-about-us__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main */
}

.page-about-us__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-about-us__btn--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A; /* Dark text for bright button */
  border: none;
}

.page-about-us__btn--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-about-us__btn--secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Primary color for text */
  border: 2px solid #F2C14E; /* Primary color for border */
}

.page-about-us__btn--secondary:hover {
  background: #F2C14E;
  color: #111111;
}

.page-about-us__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.page-about-us__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about-us__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #FFD36B; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about-us__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-about-us__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #3A2A12; /* Border color */
}

.page-about-us__story-mission-section,
.page-about-us__responsible-gaming-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Body background */
  color: #FFF6D6; /* Text Main */
}

.page-about-us__usp-section,
.page-about-us__technology-section {
  padding: 60px 0;
  background-color: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
}

.page-about-us__join-community-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Body background */
  color: #FFF6D6; /* Text Main */
  text-align: center;
}

.page-about-us__link {
  color: #F2C14E; /* Primary color for links */
  text-decoration: underline;
}

.page-about-us__link:hover {
  color: #FFD36B; /* Auxiliary color on hover */
}

/* FAQ Section */
.page-about-us__faq-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Body background */
  color: #FFF6D6; /* Text Main */
}

.page-about-us__faq-list {
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-about-us__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-about-us__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #111111; /* Card BG */
  color: #F2C14E; /* Primary color for questions */
  font-weight: bold;
}

.page-about-us__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1); /* Slight hover effect */
}

.page-about-us__faq-title {
  margin: 0;
  font-size: 1.2rem;
  color: #F2C14E; /* Primary color */
}

.page-about-us__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD36B; /* Auxiliary color */
}

.page-about-us__faq-item.active .page-about-us__faq-toggle {
  transform: rotate(45deg);
}

.page-about-us__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
}

.page-about-us__faq-item.active .page-about-us__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px 20px;
}

.page-about-us__faq-answer p {
  margin: 0;
  color: #FFF6D6; /* Text Main */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about-us__container {
    padding: 0 15px;
  }

  .page-about-us__hero-section {
    padding-bottom: 40px;
  }

  .page-about-us__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-about-us__hero-description {
    font-size: 1rem;
  }

  .page-about-us__btn {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-about-us__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-about-us__section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-about-us__sub-title {
    font-size: clamp(1.3rem, 4.5vw, 1.6rem);
  }

  .page-about-us__text-block {
    font-size: 0.95rem;
  }

  .page-about-us__story-mission-section,
  .page-about-us__usp-section,
  .page-about-us__responsible-gaming-section,
  .page-about-us__technology-section,
  .page-about-us__join-community-section,
  .page-about-us__faq-section {
    padding: 40px 0;
  }
  
  /* Images */
  .page-about-us img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  
  .page-about-us__image-content {
    margin: 20px auto;
  }

  /* Containers for mobile content overflow prevention */
  .page-about-us__section,
  .page-about-us__card,
  .page-about-us__container,
  .page-about-us__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* FAQ specific mobile adjustments */
  .page-about-us__faq-question {
    padding: 15px;
  }

  .page-about-us__faq-title {
    font-size: 1.1rem;
  }

  .page-about-us__faq-answer {
    padding: 0 15px;
  }

  .page-about-us__faq-item.active .page-about-us__faq-answer {
    padding: 10px 15px 15px;
  }
}