/* --- Sections Tarifs --- */
.pricing-section {
  padding: 4em 2em;
  text-align: center;
}
.pricing-section h2 {
  font-size: 2rem;
  margin-bottom: 2em;
  color: #A09878;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2em;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 2em;
  box-shadow: 0 5px 12px #5752406c;
  transition: all 0.2s ease;
  cursor: pointer;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 12px #57524093;
  transition: all 0.2s ease;
}
.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5em;
  color: #BF5B5E;
}
.pricing-card .price {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0.5em 0 1em;
  color: #2D2D2D;
}
.pricing-card p {
  font-size: 1rem;
  color: #555;
}
.pricing-card.highlight {
  border: 2px solid #BF5B5E;
}

/* --- Modes de paiement --- */
.payment-section {
  padding: 4em 2em;
  text-align: center;
}
.payment-section h2 {
  font-size: 2rem;
  margin-bottom: 1em;
  color: #A09878;
}
.payment-list {
  list-style: none;
  padding: 0;
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}
.payment-list li {
  font-size: 1.1rem;
  margin: 0.7em 0;
  padding-left: 1.5em;
  position: relative;
}
.payment-list li::before {
  content: "✔";
  color: #128707;
  position: absolute;
  left: 0;
}

/* --- Offres spéciales --- */
.offers-section {
  padding: 4em 2em;
  text-align: center;
}
.offers-section h2 {
  font-size: 2rem;
  margin-bottom: 2em;
  color: #A09878;
}
.offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2em;
}
.offer {
  background: #f9f9f9;
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.offer h3 {
  font-size: 1.3rem;
  color: #BF5B5E;
  margin-bottom: 0.5em;
}
.offer p {
  font-size: 1rem;
  color: #444;
}
