/* ===== FAQ-акордеон у темному стилі ===== */
.faq-block {
  margin-top: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
}

.faq-block h2 {
  color: #e8c36a;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  text-align: center;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 8px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 0 12px rgba(232,195,106,0.25);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: linear-gradient(to right, #1a1a1a, #2e2e2e);
  color: #e8c36a;
  border: none;
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: bold;
  padding: 16px 20px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-question::after {
  content: '▾';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  color: #e8c36a;
}

.faq-question[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-question:hover {
  background: linear-gradient(to right, #2e2e2e, #3a3a3a);
  color: #f5e6c8;
}

.faq-answer {
  padding: 16px 20px;
  background: rgba(0, 51, 25, 0.6);
  color: #f5e6c8;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: Georgia, serif;
}

.faq-answer.hidden {
  display: none;
}
