@import url('https://fonts.googleapis.com/css2?family=Asul:wght@400;700&family=Poppins:wght@300;400;500;600&display=swap');

.prestations-page {
  background: #fbf7ef;
  color: #2f331e;
  font-family: "Asul";
}

.hero-prestations {
  text-align: center;
  padding: 90px 20px 70px;
  position: relative;
  font-family: "Asul";
}

.section-label {
  color: #df734f;
  font-family: 'Brush Script MT', cursive;
  font-size: 30px;
  margin-bottom: 10px;
  font-family: "Asul";
}

.hero-prestations h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1.15;
  font-weight: 400;
  font-family: "Asul";
}

.hero-prestations h1 span {
  color: #df734f;
}

.small-line {
  margin: 22px 0;
  color: #7d7a55;
}

.hero-text {
  font-size: 16px;
  line-height: 1.8;
  color: #4e4e3f;
}

.prestation-block,
.simple-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
  padding: 45px 6%;
  border-top: 1px solid rgba(125, 122, 85, 0.12);
}

.prestation-intro span {
  color: #df734f;
  font-size: 22px;
  font-family: "Asul";
}

.prestation-intro h2 {
  font-family: "Asul";
  font-size: 36px;
  font-weight: 400;
  margin: 15px 0 25px;
}

.prestation-intro p {
  font-size: 14px;
  line-height: 1.7;
  color: #4e4e3f;
}

.mini-line {
  margin-top: 35px;
  color: #7d7a55;
}

.image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.image-row img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
}

.packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 18px;
}

.pack-card {
  border: 1px solid rgba(125, 122, 85, 0.25);
  border-radius: 14px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.35);
}

.pack-card p {
  letter-spacing: 5px;
  font-size: 13px;
  color: #7d7a55;
  margin-bottom: 8px;
}

.pack-card h3 {
  font-family: "Asul";
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 20px;
}

.pack-card ul {
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.8;
}

.pack-card strong {
  display: block;
  margin-top: 25px;
  color: #df734f;
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

.main-btn,
.cta-prestations a {
  display: inline-block;
  background: #7d7a55;
  color: white;
  text-decoration: none;
  padding: 13px 45px;
  border-radius: 30px;
  margin: 28px auto 0;
  font-size: 14px;
}

.identity-content {
  text-align: center;
}

.cta-prestations {
  margin: 50px 6%;
  padding: 60px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(204, 91, 48, 0.95), rgba(230, 118, 74, 0.9));
  color: white;
}

.cta-prestations h2 {
  font-family: "Asul";
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 15px;
}

.cta-prestations p {
  max-width: 520px;
  line-height: 1.7;
}

.cta-prestations a {
  background: white;
  color: #7d7a55;
}

@media screen and (max-width: 900px) {
  .prestation-block,
  .simple-block {
    grid-template-columns: 1fr;
  }

  .image-row,
  .packs {
    grid-template-columns: 1fr;
  }

  .hero-prestations h1 {
    font-size: 38px;
  }
}