:root {
  --primary: #004aad;
  --accent: #e53935;
  --muted: #555;
  --bg: #eaf2fa;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background: var(--bg);
  color: #111;
}

.flyers-section {
  background: var(--bg);
  padding: 80px 24px;
}

.flyers-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 40px;
}

/* Texte */
.flyers-text {
  flex: 1 1 520px;
}

.flyers-text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px 0;
  color: #111;
}

.flyers-text h2 span {
  color: var(--primary);
}

.flyers-text p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 550px;
}

/* Surbrillance mots */
mark.orange {
  background-color: #ffb74d;
  color: #111;
  padding: 0 3px;
}

mark.yellow {
  background-color: #ffeb3b;
  color: #111;
  padding: 0 3px;
}

/* Image */
.flyers-image {
  flex: 1 1 420px;
  display: flex;
  justify-content: center;
}

.flyers-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .flyers-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .flyers-text h2 {
    font-size: 40px;
  }
  .flyers-text p {
    font-size: 16px;
    margin: 0 auto;
  }
}
