/* === Base === */
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  color: #222;
  background-color: #ffffff; /* Fond blanc pur, pour coller au logo */
  line-height: 1.6;
}

/* === Header & Hero === */
header {
  padding: 1rem;
  text-align: center;
}

header img {
  max-width: 200px;
  height: auto;
}

header h1 {
  display: none;
  margin: 0;
  font-size: 2rem;
}

header p {
  display: none;
  margin: 0.5rem 0 0;
  font-size: 1.1rem;
}

header.hero-banner {
  background-color: inherit;
  color: inherit;
  padding: 0;
  text-align: center;
  width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
}

header.hero-banner img {
  width: 100%;
  max-height: 80vh;
  max-width: 100%;
  margin-bottom: 0;
  display: block;
  object-fit: cover;
}

/* === Sections === */
section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h2 {
  color: #2b72c8; /* Bleu du logo */
  font-size: 1.7rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
}

/* === Appels à l'action === */
.cta {
  background-color: #2b72c8; /* Bleu du logo */
  color: #fff;
  padding: 1rem;
  text-align: center;
  margin-top: 2rem;
}

.cta a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* === Témoignages === */
.testimonial-card {
  background-color: #fdfdfd;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.quote-icon {
  font-size: 40px;
  color: #2b72c8;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-text {
  margin-left: 50px;
  font-style: italic;
  line-height: 1.6;
  color: #333;
}

.author {
  text-align: right;
  font-weight: bold;
  margin-top: 20px;
}

.author span {
  font-weight: normal;
  font-size: 0.95em;
  color: #888888;
}

.cta-references {
  text-align: center;
  margin-top: 50px;
}

.cta-references a {
  background-color: #f98e3d; /* Orange du logo */
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.cta-references a:hover {
  background-color: #cc6f27;
}

/* === Footer === */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  margin: 3rem 0 1rem;
}
