.elementor-kit-9{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-6a30e14:#B8964A;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:#F2EDE3;}.elementor-kit-9 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* =========================================================
   SOULSTREAM CODEX – FAQ (CSS ONLY, ELEMENTOR SAFE)
   ========================================================= */

#faq {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 20px;
}@media (max-width: 767px) {
  #faq {
    width: 100% !important;
    max-width: 100% !important;
    padding: 60px 20px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .faq-container,
  .faq-item,
  .faq-question,
  .faq-answer {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .faq-question {
    padding: 18px 18px !important;
    gap: 15px;
  }

  .faq-answer {
    padding: 0 18px 22px !important;
  }
}

/* Title */
#faq .section-title {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 42px;
  color: #d4af37;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

/* Container */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FAQ item */
.faq-item {
  background: linear-gradient(to bottom, #021114, #000);
  border: 1px solid rgba(212,175,55,0.35);
}

/* Question */
.faq-question {
  list-style: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: #d4af37;
  letter-spacing: 1px;
}

/* Remove default arrow */
.faq-question::-webkit-details-marker {
  display: none;
}

/* Plus icon */
.faq-question span {
  font-size: 26px;
  transition: transform 0.3s ease;
}

/* Rotate plus when open */
.faq-item[open] .faq-question span {
  transform: rotate(45deg);
}

/* Answer — IMPORTANT PART */
.faq-answer {
  display: block;              /* 🔑 force visible */
  padding: 0 26px 24px;
  color: #c9c9c9;
  font-size: 15px;
  line-height: 1.75;
}

/* Mobile */
@media (max-width: 768px) {
  #faq .section-title {
    font-size: 32px;
  }

  .faq-question {
    font-size: 16px;
  }
}
/* === FORCE ANSWER TO SHOW WHEN DETAILS IS OPEN === */
.faq-item[open] .faq-answer {
  display: block !important;
  max-height: none !important;
  overflow: visible !important;
  opacity: 1 !important;
}/* End custom CSS */