/* Стили для FAQ блоков - добавьте в Tilda → Настройки сайта → Дополнительные CSS */

.av54-faq {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

.av54-faq-item {
  margin-bottom: 30px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.av54-faq-item:hover {
  background: #f0f0f0;
}

.av54-faq-question {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.4;
}

.av54-faq-answer {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.av54-faq-answer p {
  margin: 0;
}

/* Стили для семантических блоков */
.av54-section {
  margin: 40px 0;
}

.av54-address {
  font-style: normal;
  line-height: 1.6;
}

/* Исправление для Tilda - показываем FAQ блок */
.t123 .av54-faq {
  position: relative !important;
  width: 100% !important;
  opacity: 1 !important;
}

/* Адаптивность */
@media (max-width: 768px) {
  .av54-faq {
    padding: 15px;
  }
  
  .av54-faq-item {
    padding: 15px;
  }
  
  .av54-faq-question {
    font-size: 16px;
  }
  
  .av54-faq-answer {
    font-size: 14px;
  }
}