.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin: 1rem;
    overflow: hidden;
}

.faq-question {
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #008c8c;
  font-size: 1.1rem;       /* plus proche d’un h2 */
  margin: 0;               /* évite un double espacement avec les h2 */
  border-bottom: 1px solid #f0f0f0;
}

.faq-answer {
    display: none;
    padding: 1rem;
    border-top: 1px solid #eee;
    color: #333;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item svg {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question > svg {
  transform: rotate(180deg);
}

@media (max-width: 500px) {
  .faq-question {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
}
