/* ======= Couleurs principales ======= */
:root {
  --fond-principal: #fffbe7;
  --texte-principal: #2d2d2d;
  --orange-fonce: #e85d04;
  --orange-clair: #ffb347;
  --fond-table: #fff6db;
  --bordure-table: #ffb347;
}

/* ======= Reset & Base ======= */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: var(--fond-principal);
  color: var(--texte-principal);
}

/* ======= Header ======= */
header {
  background: var(--orange-clair);
  padding: 2rem 0 1rem 0;
  text-align: center;
}
header h1 {
  margin: 0;
  font-size: 2.2rem;
  letter-spacing: 1px;
}
header p {
  margin: 0.5rem 0 0 0;
  font-size: 1.1rem;
  font-style: italic;
}

/* ======= Navigation ======= */
nav {
  margin: 1rem 0;
  text-align: center;
}
nav a {
  text-decoration: none;
  color: var(--texte-principal);
  margin: 0 1.2rem;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.2s;
}
nav a:hover {
  color: var(--orange-fonce);
}

/* ======= Conteneur principal ======= */
.container {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 800px) {
  .container {
    flex-direction: column;
    padding: 1.2rem;
  }
}

/* ======= Sections spécifiques (témoignage, SEO, tableaux) ======= */
h2 {
  color: var(--orange-fonce);
  margin-top: 0.5rem;
}
p {
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ======= Images ======= */
.box-img {
  flex: 1 1 300px;
  text-align: center;
}
.box-img img {
  max-width: 90%;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.testimonial-photo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--orange-clair);
  box-shadow: 0 2px 8px rgba(232,93,4,0.10);
}

/* ======= Témoignage ======= */
.testimonial-section {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.testimonial-content blockquote {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #444;
  margin: 0;
  padding: 0 0 0 1rem;
  border-left: 4px solid var(--orange-fonce);
  background: var(--fond-principal);
}
.testimonial-content cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: var(--orange-fonce);
  font-weight: bold;
  font-size: 1.05rem;
}
.testimonial-content .stars {
  color: var(--orange-clair);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  display: inline-block;
}
@media (max-width: 800px) {
  .testimonial-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonial-photo {
    margin-bottom: 1rem;
  }
}

/* ======= Mots-clés ======= */
.keywords {
  margin: 1.5rem 0;
  font-size: 1.1rem;
}
.keywords span {
  background: var(--orange-fonce);
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  margin-right: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  display: inline-block;
}

/* ======= Bouton Call-To-Action ======= */
.cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2.2rem;
  background: var(--orange-clair);
  color: var(--texte-principal);
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(232,93,4,0.13);
  transition: background 0.15s, color 0.15s;
}
.cta:hover {
  background: var(--orange-fonce);
  color: #fff;
}

/* ======= Tableaux ======= */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background: var(--fond-principal);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(232,93,4,0.06);
}
th, td {
  border: 1px solid var(--bordure-table);
  padding: 0.85rem 0.7rem;
  text-align: left;
}
th {
  background: var(--orange-clair);
  color: var(--texte-principal);
  font-weight: bold;
  font-size: 1.1rem;
}
tr:nth-child(even) td {
  background: var(--fond-table);
}
@media (max-width: 800px) {
  table, th, td {
    font-size: 0.97rem;
  }
}

/* ======= Footer ======= */
footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.95rem;
  color: #888;
  padding-bottom: 1.5rem;
}
