/* Reset simple */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  background: #fdfdfd;
  color: #222;
  font-size: 16px;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* ----- HEADER ----- */
header {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

header .subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

/* ----- SECTIONS ----- */
section {
  margin-bottom: 3rem;
}

section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.highlight {
  background: #f8f9fa;
  border-left: 5px solid #3498db;
  padding: 1.5rem;
  border-radius: 6px;
}

/* ----- LISTES ----- */
ul, ol {
  margin-left: 1.5rem;
  margin-top: 1rem;
}

ul li, ol li {
  margin-bottom: 0.5rem;
}

/* ----- CTA ----- */
a.cta {
  display: inline-block;
  background: #e67e22;
  color: white;
  font-weight: bold;
  padding: 0.9rem 1.6rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

a.cta:hover {
  background: #d35400;
}

a.cta-secondary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.3rem;
  border-radius: 5px;
  text-decoration: none;
  color: #2c3e50;
  border: 2px solid #2c3e50;
  font-weight: 600;
  transition: all 0.3s ease;
}

a.cta-secondary:hover {
  background: #2c3e50;
  color: white;
}

/* ----- BLOCKQUOTES / AVIS ----- */
blockquote {
  background: #f4f6f8;
  border-left: 5px solid #3498db;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  border-radius: 5px;
}

blockquote cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  font-weight: bold;
  color: #555;
}

/* ----- FAQ ----- */
section h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #34495e;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* ----- FOOTER ----- */
footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }
  section h2 {
    font-size: 1.5rem;
  }
  a.cta, a.cta-secondary {
    display: block;
    margin: 0.8rem auto;
    text-align: center;
  }
}