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

.page-faq__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small padding-top, larger bottom padding */
  text-align: center;
}

.page-faq__hero-image {
  width: 100%;
  height: auto;
  max-height: 675px;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
}

.page-faq__hero-content {
  max-width: 900px;
  padding: 0 20px;
  margin-top: -100px; /* Overlap slightly for visual effect, but not over image content */
  position: relative;
  z-index: 1;
}

.page-faq__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow */
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-faq__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

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

.page-faq__btn-primary,
.page-faq__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

.page-faq__btn-primary:hover {
  background: linear-gradient(180deg, #FFE89A 0%, #E8B12D 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-faq__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow */
  border: 2px solid #F2C14E; /* Main color */
}

.page-faq__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  color: #FFF6D6;
  border-color: #FFD36B;
  transform: translateY(-2px);
}

.page-faq__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-faq__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-faq__section-intro {
  font-size: 1.05em;
  text-align: center;
  margin-bottom: 40px;
  color: #FFF6D6;
}

.page-faq__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-faq__faq-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-faq__faq-item.active {
  border-color: #F2C14E;
}

.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  color: #FFF6D6;
  font-weight: bold;
  font-size: 1.15em;
  transition: background-color 0.3s ease;
}

.page-faq__faq-question h3 {
  margin: 0;
  font-size: 1em; /* Adjust to fit parent font size */
  color: inherit;
}

.page-faq__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.05);
}

.page-faq__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E;
}

.page-faq__faq-item.active .page-faq__faq-toggle {
  transform: rotate(45deg); /* Change to X or - */
  color: #FFD36B;
}

.page-faq__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #FFF6D6;
}

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

.page-faq__faq-answer p {
  margin-bottom: 15px;
  color: inherit;
}

.page-faq__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-faq__faq-answer ul {
  list-style: disc inside;
  margin-bottom: 15px;
  padding-left: 20px;
}

.page-faq__faq-answer li {
  margin-bottom: 5px;
  color: inherit;
}

.page-faq__cta-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background: #111111; /* Card BG */
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  text-align: left;
}

.page-faq__cta-content {
  flex: 1;
  max-width: 600px;
}

.page-faq__cta-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-faq__cta-description {
  font-size: 1.05em;
  color: #FFF6D6;
  margin-bottom: 25px;
}

.page-faq__cta-image {
  flex-shrink: 0;
  width: 400px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-faq__hero-content {
    margin-top: -60px;
  }
  .page-faq__cta-section {
    flex-direction: column;
    text-align: center;
  }
  .page-faq__cta-image {
    width: 100%;
    max-width: 500px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-section {
    padding-bottom: 40px;
  }
  .page-faq__hero-content {
    margin-top: -40px;
  }
  .page-faq__main-title {
    font-size: 2.2em;
  }
  .page-faq__description {
    font-size: 1em;
  }
  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-faq__btn-primary,
  .page-faq__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
  }
  .page-faq__content-area,
  .page-faq__cta-section {
    padding: 20px 15px;
  }
  .page-faq__section-title {
    font-size: 1.8em;
  }
  .page-faq__section-intro {
    font-size: 0.95em;
  }
  .page-faq__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-faq__faq-answer {
    padding: 0 20px;
  }
  .page-faq__faq-item.active .page-faq__faq-answer {
    padding: 15px 20px 20px 20px;
  }
  .page-faq__cta-title {
    font-size: 1.8em;
  }
  .page-faq__cta-description {
    font-size: 0.95em;
  }
  /* Mobile image responsiveness */
  .page-faq img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-faq__hero-image,
  .page-faq__cta-image {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  /* Content containers for overflow prevention */
  .page-faq__hero-section,
  .page-faq__content-area,
  .page-faq__section-spacing,
  .page-faq__cta-section,
  .page-faq__cta-buttons,
  .page-faq__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-faq__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-faq__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-faq__faq-item {
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}