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

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

.page-about-us__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, #0A0A0A 100%); /* Dark overlay for text readability */
}

.page-about-us__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 675px; /* Limit height for aesthetic */
  display: block;
}

.page-about-us__hero-content {
  position: relative;
  z-index: 1; /* Ensure content is above any background effects */
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -100px; /* Pull content up slightly over the image for better visual flow, but not *on* it */
  background: rgba(10, 10, 10, 0.7); /* Semi-transparent background for text readability */
  border-radius: 10px;
}

.page-about-us__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  color: #FFD36B; /* Glow color for prominence */
  margin-bottom: 20px;
}

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

.page-about-us__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-about-us__btn-primary,
.page-about-us__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-about-us__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color from custom palette */
  color: #111111; /* Dark text for contrast on gold button */
  border: none;
}

.page-about-us__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-about-us__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow color for text */
  border: 2px solid #FFD36B; /* Border color from custom palette */
}

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

/* Sections */
.page-about-us__mission-vision-section,
.page-about-us__offerings-section,
.page-about-us__why-choose-section,
.page-about-us__faq-section {
  padding: 80px 0;
  background: #0A0A0A; /* Background color from custom palette */
}

.page-about-us__dark-section {
  background: #111111; /* Card BG color from custom palette */
  padding: 80px 0;
}

.page-about-us__section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #FFD36B; /* Glow color */
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
}

.page-about-us__container > .page-about-us__text-content,
.page-about-us__container > .page-about-us__image-block {
  display: flex; /* For sections with image and text side-by-side */
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-about-us__mission-vision-section .page-about-us__container,
.page-about-us__offerings-section .page-about-us__container,
.page-about-us__security-fairness-section .page-about-us__container {
  display: flex;
  flex-direction: row; /* Default desktop layout */
  align-items: center;
  gap: 60px;
}

.page-about-us__mission-vision-section .page-about-us__text-content,
.page-about-us__offerings-section .page-about-us__text-content,
.page-about-us__security-fairness-section .page-about-us__text-content {
  flex: 1;
}

.page-about-us__mission-vision-section .page-about-us__image-block,
.page-about-us__offerings-section .page-about-us__image-block,
.page-about-us__security-fairness-section .page-about-us__image-block {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-about-us__image-block {
  width: 100%;
  height: auto;
  display: block;
}

/* Values Section */
.page-about-us__values-grid,
.page-about-us__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about-us__card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6; /* Text Main */
}

.page-about-us__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 211, 107, 0.2);
}

.page-about-us__card-title {
  font-size: 1.5rem;
  color: #FFD36B; /* Glow color */
  margin-bottom: 15px;
}

.page-about-us__card-description {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
}

/* Game List */
.page-about-us__game-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-about-us__list-item {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #FFF6D6; /* Text Main */
}

.page-about-us__list-item strong {
  color: #FFD36B; /* Glow color */
}

.page-about-us__list-link {
  color: #FFD36B; /* Glow color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about-us__list-link:hover {
  color: #F2C14E; /* Main color on hover */
  text-decoration: underline;
}

/* CTA Section */
.page-about-us__cta-section {
  padding: 100px 0;
  text-align: center;
}

.page-about-us__cta-content {
  max-width: 800px;
}

/* FAQ Section */
.page-about-us__faq-list {
  margin-top: 40px;
}

.page-about-us__faq-item {
  background: #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 25px;
  cursor: pointer;
  background: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
  font-size: 1.2rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.page-about-us__faq-question:hover {
  background: #1A1A1A;
}

.page-about-us__faq-question h3 {
  margin: 0;
  color: #FFD36B; /* Glow color */
  font-size: 1.2rem;
}

.page-about-us__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD36B; /* Glow color */
  transition: transform 0.3s ease;
}

.page-about-us__faq-item.active .page-about-us__faq-toggle {
  transform: rotate(45deg); /* Plus sign becomes cross */
}

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

.page-about-us__faq-item.active .page-about-us__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 15px 25px 25px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-about-us__mission-vision-section .page-about-us__container,
  .page-about-us__offerings-section .page-about-us__container,
  .page-about-us__security-fairness-section .page-about-us__container {
    flex-direction: column;
    gap: 40px;
  }

  .page-about-us__mission-vision-section .page-about-us__image-block,
  .page-about-us__offerings-section .page-about-us__image-block,
  .page-about-us__security-fairness-section .page-about-us__image-block {
    max-width: 100%;
  }
}