.title {
  font-size: 2rem;
  color: #5e2ca7;
  text-align: center;
  margin-bottom: 10px;
}

/* ===== OFFRES ===== */

.offers-page {
  background: #f9f5f8;
  color: #333;
  margin: 0 auto;
}

.offers-page p {
  font-size: 1.4rem;
  margin-top: 20px;
  text-align: center;
  padding-bottom: 5px;
}

.offers-page .about-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.offers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.offer-card {
  background: #fff;
  border: 1px solid #e6ddf0;
  border-radius: 10px;
  padding: 25px;
  width: 340px;
  max-width: 95%;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.offer-card h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.offer-card ul {
  list-style: none;
  font-size: 1.2rem;
  padding: 0;
  margin: 15px 0;
}

.offer-card ul li {
  margin-bottom: 8px;
}

.offer-card ul li::before {
  content: "✓";
  color: #5e2ca7;
  margin-right: 8px;
}

.offer-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #5e2ca7;
  margin: 15px 0;
}

.offer-badge {
  background: #5e2ca7;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-top: 10px;
}

/* Hover léger (comme tes autres cards) */
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Mise en avant de l’offre centrale */
.offer-card.highlight {
  border: 2px solid #5e2ca7;
  position: relative;
}

/* Hover identique aux autres cartes */
.offer-card.highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.offer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.offer-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background-color: #ff8a00;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.offer-btn:hover,
.offer-btn:focus-visible {
  background-color: #e67600;
  transform: translateY(-2px);
}

/* OPTIONS */
.about-section.options,
.about-section.services-light,
.about-section.center {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}

.options-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.options-list li {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.options,
.services-light {
  background: #fff;
}

/* SERVICES LIGHT */

.services-light ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  font-size: 1.2rem;
}

.services-light li {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .offers-grid {
    flex-direction: column;
    align-items: center;
  }

  .offer-card {
    width: 90%;
  }

  .offer-card.highlight {
    transform: none; /* évite effet bizarre mobile */
  }
}
