/* Стили для страницы FAQ */

.faq-page {
  background: #f8f9fa;
  padding: 16px 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  color: #1a1a2e;
  margin: 0 0 8px;
  line-height: 1.3;
}

.faq-subtitle {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
  margin: 0 0 24px;
  line-height: 1.5;
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* === Карточка секции === */
.faq-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 1.09px 1.09px 5.44px 0px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.faq-section-header {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 24px 16px;
}

.faq-section-title {
  font-family: "Verdana", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  color: #1a1a2e;
  margin: 0;
}
.faq-icon {
  width: 27px;
  height: 27px;
  margin-bottom: 2px;
}
/* === Аккордеон === */
.faq-accordion {
  padding: 0 24px 20px;
}

.faq-accordion-item {
  border-bottom: 1px solid rgba(154, 154, 154, 1);
}

.faq-accordion-item:last-child {
  border-bottom: none;
}

.faq-accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 14px 0;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.faq-accordion-btn span:first-child {
  font-family: "Verdana", sans-serif;
  font-size: clamp(0.8rem, 0.85vw, 0.85rem);
  font-weight: 500;
  color: #1a1a2e;
  line-height: 1.4;
}

/* Оранжевая стрелка-треугольник */
.faq-accordion-arrow {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid #ff8c42;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-accordion-item.active .faq-accordion-arrow {
  transform: rotate(180deg);
}

/* Ответ */
.faq-accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-accordion-answer p {
  font-family: "Verdana", sans-serif;
  font-size: clamp(0.8rem, 0.8vw, 0.8rem);
  line-height: 1.4;
  font-style: normal;
  color: #555;
  padding: 0 0 14px;
  margin: 0;
}

/* === Мобильные === */
@media (max-width: 640px) {
  .faq-section-header {
    gap: 10px;
    padding: 16px 16px 12px;
  }

  .faq-accordion {
    padding: 0 16px 16px;
  }

  .faq-section {
    border-radius: 12px;
  }
}
