/* Hero */
.faq-header {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(120deg, #ff8c00, #ffb347);
  color: white;
  border-radius: 0 0 20px 20px;
}

.faq-header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.faq-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Structure */
.faq-container {
  margin: 40px auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 0 20px;
  max-width: 1100px;
}

/* FAQ list */
.section-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #222;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.faq-question {
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.chevron-icon {
  transition: transform 0.3s;
  font-weight: bold;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 10px;
}

/* Colonne poser une question */
.faq-ask {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.faq-ask h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.ask-form {
  display: flex;
  flex-direction: column;
}

.ask-form input,
.ask-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
}

.ask-btn {
  background: #ff8c00;
  padding: 12px;
  border: none;
  color: white;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.ask-btn:hover {
  background: #ff6600;
}

