@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
  --primaryColor: #bf953f;
  --primaryBoldColor: #916105;
  --primaryBlackColor: #000;
  --secondaryColor: #ffffff;
  --opaqueBackground: #000000e6;
  --mainCanvasBackground: #141414;
  --primaryTextSize: 15px;
  --primaryTextSizeS: 10px;
  --letterSpacing: 5px;
  --radius: 4px;
  --contentTransitionDuration: 600ms;
  --contentTransitionBezier: cubic-bezier(.83,.39,.21,.96);
}

* {
  box-sizing: border-box;
}
.mb-0 {
  margin-bottom: 0px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.mb-12 {
  margin-bottom: 12px !important;
}
.mb-25 {
  margin-bottom: 25px !important;
}
a {
  text-decoration: none;
}

ul {
  padding: 0;
  list-style: none;
}

li {
  color: var(--secondaryColor);
  font: 600 15px Poppins, sans-serif;
  text-align: left;
}
li::before {
  content: "•";
  color: var(--primaryColor);
  display: inline-block; 
  width: 15px;
  margin-left: -1em;
}
html, body {
  height: auto;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

body {
  background-color: #141414;
  overscroll-behavior: contain;
  overflow: hidden;
}

canvas {
	display: block;
}

.ui-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.text-indent {
  border-left: 3px solid var(--primaryBoldColor);
  padding-left: 20px;
}

.emphasize {
  font-weight: bold;
}

.flex {
  display: flex;
}
.flex--center {
  justify-content: center;
  align-items: center;
}

/***** LOADED PAGE ANIMATIONS *****/
.ui-wrapper.page-not-loaded .loader {
  animation: none;
}
.ui-wrapper.page-not-loaded .loader__text::after {
  animation: none;
}
.ui-wrapper.page-not-loaded .fixed-content {
  opacity: 0;
}

.fixed-content-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 5% 5% 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

.fixed-content-header__contact {
  opacity: 1 !important;
}
.fixed-content-header__sigin {
  opacity: 1 !important;
}
.fixed-content-header__logo {
  color: var(--secondaryColor);
  font: 900 30px Poppins, sans-serif;
  letter-spacing: 0.05em;
  user-select: none;
  margin-left: 30px;
  text-transform: uppercase;
}
.fixed-content-header__logo img {
  vertical-align: middle;
  display: inline-block;
}
.fixed-content-header__logo span {
  color: #ecc762;
}
.fixed-content-header__logo::first-letter {
  color: var(--primaryColor);
}

.fixed-content-paging {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  width: 50px;
  z-index: 1;
}

.fixed-content-paging:hover .paging__page {
  height: 30px;
  width: 30px;
  transition: 300ms ease;
  border-radius: var(--radius);
}

.social-links__anchor {
  margin-right: 10px;
  display: inline-block;
  text-decoration: none;
}
.social-links__anchor:last-of-type {
  margin-right: 0;
}

.social-links__image {
  filter: invert(90%);
  vertical-align: bottom;
  cursor: pointer;
}
.social-links__image:hover {
  filter: invert(100%);
}
.fixed-content-header__contact {
    opacity: 1 !important;
}
.fixed-content-header__sigin {
    opacity: 1 !important;
}
/* BUTTONS */
.button {
  position: relative;
  border: none;
  background-color: transparent;
  padding: 15px 30px;
  font: 700 var(--primaryTextSize) Poppins, sans-serif;
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
}

.button__image {
  width: 20px;
  filter: invert(100%);
}
.button__text {
  z-index: 1;
}

.button--primary {
  background-color: var(--primaryColor);
  color: var(--secondaryColor);
  position: relative;
  z-index: 1;
}
.button--primary::before,
.button--primary::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  content: '';
  z-index: -1;
  transition: width 400ms ease;
}
.button--primary:hover::before {
  width: 100%;
  transition: width 300ms ease;
  background-color: var(--primaryBoldColor);
}
.button--primary:hover::after {
  width: 20px;
  transition: width 200ms 200ms ease;
  background-color: var(--primaryBlackColor);
}

.button--icon {
  background-color: var(--primaryColor);
  color: var(--secondaryColor);
  display: flex;
  align-items: center;
}
.button--icon::before {
  content: '';
  position: absolute;
  left: -11px;
  top: 50%;
  background-color: var(--primaryBoldColor);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transition: 300ms ease;
  opacity: 0;
  transform-origin: center;
}

.button--icon:hover::before {
  animation: none;
  transform: translateY(-50%) scale(1);
  opacity: 1;
  transition: 1s ease;
}

.button--icon > *:first-child {
  margin-right: 10px;
}

.button--secondary {
  display: flex;
  align-items: center;
  border: 2px solid var(--primaryColor);
  color: var(--secondaryColor);
}
.button--secondary::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primaryBoldColor);
  width: 10px;
  height: 100%;
  transform: rotate(-45deg) translate(3px, 10px);
  transition: transform 600ms ease;
  transform-origin: bottom;
}
.button--secondary:hover::before {
  transform: rotate(0) translate(0, 0);
  transition: transform 600ms ease;
}


.page-not-loaded {
  opacity: 1 !important;
  visibility: visible !important;
}


.content-section__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
}


.faq-wrapper {
  min-height: 100vh; /* Full viewport height */
  display: flex;
  justify-content: center;
  background-color: #141414;
  padding: 100px 0 60px;
  box-sizing: border-box;
}


.container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px; /* Adds the 24px side padding you requested */
}

.faq-item {
  margin-bottom: 25px;
  border-bottom: 1px solid #444;
  padding: 20px 0;
}

.faq-question {
  font: 700 20px Poppins, sans-serif;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  font: 500 18px Poppins, sans-serif;
  color: #ccc;
  margin-top: 10px;
  display: none;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.content-section__title {
  font: 700 24px Poppins, sans-serif;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.faq-toggle-icon {
  font-size: 1.5rem;
  color: #F1B224;
  margin-left: 15px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}


.faq-answer.show {
  display: block;
}

.go-main-button {
  margin: 20px auto;
  display: block;
  padding: 12px 25px;
  background-color: #bf953f;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.go-main-button:hover {
  background-color: #e0a81f;
}

.fixed-content-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 0 5% 5% 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.fixed-content-footer__copy {
    color: var(--secondaryColor);
    font: 600 var(--primaryTextSize) Poppins, sans-serif;
}
@media only screen and (max-width: 1024px) {

  .fixed-content-header__logo {
    font-size: var(--primaryTextSize);
    letter-spacing: var(--letterSpacing);
  }
  .fixed-content-footer__copy {
  color: var(--secondaryColor);
  font: 600 var(--primaryTextSize) Poppins, sans-serif;
}
  .fixed-content-footer__copy {
    font-size: var(--primaryTextSizeS);
  }
  .fixed-content-header, .fixed-content-footer {
    background-color: #141414;
}
}


.fixed-content-header__contact,
.fixed-content-header__sigin {
  margin-left: 12px;
  position: relative;
  z-index: 1;
}

.fixed-content-header__contact:hover,
.fixed-content-header__sigin:hover {
  z-index: 2;
}
.button-group {
  display: flex;
  gap: 12px; 
}

