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

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-about__hero-section {
  padding-top: var(--header-offset, 120px); /* Desktop default */
  background: linear-gradient(135deg, #0A0A0A 0%, #111111 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}

.page-about__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
  overflow: hidden;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  padding-top: 10px; /* Small top spacing for content */
}

.page-about__main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #F2C14E; /* Main Color */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-about__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

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

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

.page-about__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Text Main for contrast */
  border: 2px solid transparent;
}

.page-about__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-about__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Main Color */
  border: 2px solid #F2C14E; /* Border color */
}

.page-about__btn-secondary:hover {
  background: #F2C14E;
  color: #111111; /* Text Main for contrast */
  transform: translateY(-3px);
}

.page-about__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F2C14E; /* Main Color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

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

.page-about__story-section,
.page-about__responsible-gaming-section,
.page-about__join-us-section,
.page-about__faq-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
}

.page-about__offerings-section,
.page-about__why-choose-section {
  padding: 80px 0;
  background-color: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
}

.page-about__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-about__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-about__text-block {
  flex: 1;
  color: #FFF6D6;
}

.page-about__text-block p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.page-about__text-block a {
  color: #FFD36B;
  text-decoration: underline;
}

.page-about__text-block a:hover {
  color: #F2C14E;
}

.page-about__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid #3A2A12; /* Border */
  display: block;
}

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

.page-about__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #1a1a1a;
  color: #FFF6D6;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
  background-color: #2a2a2a;
}

.page-about__faq-title {
  margin: 0;
  color: #FFF6D6;
  font-size: 1.1rem;
}

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E;
}

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

.page-about__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  font-size: 0.95rem;
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 20px;
}

.page-about__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__content-grid {
    flex-direction: column;
    text-align: center;
  }

  .page-about__content-grid--reverse {
    flex-direction: column;
  }

  .page-about__image-block {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }

  .page-about__section-title {
    margin-bottom: 30px;
  }

  .page-about__sub-title {
    margin-top: 20px;
  }

  .page-about__hero-section,
  .page-about__story-section,
  .page-about__offerings-section,
  .page-about__responsible-gaming-section,
  .page-about__why-choose-section,
  .page-about__join-us-section,
  .page-about__faq-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-about__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile padding from shared */
    padding-bottom: 40px;
  }

  .page-about__main-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .page-about__description {
    font-size: 1rem;
  }

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-about__section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 25px;
  }

  .page-about__sub-title {
    font-size: clamp(1.3rem, 4.5vw, 1.8rem);
  }

  /* Image responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .page-about__section,
  .page-about__card,
  .page-about__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

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

  .page-about__faq-item.active .page-about__faq-answer {
    padding: 15px;
  }
}