.gb-faq-section {
  margin-top: 40px;
  margin-bottom: 60px;
}

.gb-faq-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 24px 20px;
  background: transparent;          /* tamna pozadina (kao modal) */
  border-radius: 16px;
  border: 1px solid rgba(255, 209, 0, 0.22); /* jači gold-tone border */
  box-shadow: 0 0 18px rgba(255, 209, 0, 0.08);   /* suptilni okvir */
}

.gb-faq-title {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 700;
  color: #FFD100;               /* zlatna boja */
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gb-faq-subtitle {
  margin: 0 0 20px;
  font-size: 15px;
  margin-bottom: 22px;
  color: #C7C7D6; 
}

.gb-faq-list {
  border-top: 1px solid #343544;
}

.gb-faq-item {
  border-bottom: 1px solid #343544;
}

.gb-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #E4E4E7;
  font-size: 15px;
  font-weight: 700;
}

.gb-faq-question:hover .gb-faq-q-text {
  color: #FFFFFF;
  text-shadow: 0 0 6px rgba(255, 209, 0, 0.55);
}

.gb-faq-q-text {
  flex: 1;
  padding-right: 18px;
}

.gb-faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid #FFD100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  color: #FFD100;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.gb-faq-item.is-open .gb-faq-icon {
  transform: rotate(45deg);        /* + postaje x */
  background: #FFD100;
  color: #14141F;
}

.gb-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.gb-faq-answer-inner {
  padding: 0 0 14px;
  font-size: 14px;
  color: #C7C7D6;
  line-height: 1.6;
}

.gb-faq-item.is-open .gb-faq-answer {
  max-height: 500px; /* dovoljno da stane normalan odgovor */
}
