/* Conteneur général */
.service-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  font-family: 'Segoe UI', Roboto, sans-serif;
  color: #333;
  line-height: 1.8;
  font-size: 1.4rem;
}

/* En-tête principal */
.service-header h1 {
  font-size: 3.2rem;
  color: #81c440;
  margin-bottom: 2rem;
  text-align: center;
}

/* Image bannière dans l’en-tête */
.service-header img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Intro */
.service-header p {
  overflow: hidden;
}

.service-intro {
  font-size: 1.35rem;
  margin-top: 1.5rem;
  text-align: justify;
}

/* Sections */
.service-section {
  margin-bottom: 4rem;
}

.service-section h2 {
  font-size: 2.6rem;
  color: #81c440;
  border-left: 5px solid #81c440;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.service-section p {
  margin-bottom: 1.5rem;
}

/* Listes (suppression puces natives + ajout icône) */
.service-list,
.advantages-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 2rem;
}

.service-list li,
.advantages-list li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1.25rem;
}

.service-list li::before,
.advantages-list li::before {
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: #1a4e8a;
  font-weight: bold;
  font-size: 1.4rem;
}

.service-list li::before {
  content: '✔';
}

.advantages-list li::before {
  content: '➤';
}

/* Sections avec image */
.section-with-image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.section-with-image .section-image {
  flex: 1 1 300px;
  max-width: 350px;
  border-radius: 8px;
}

.section-with-image .section-content {
  flex: 2 1 400px;
}

/* Avantages */
.advantages-section h2 {
  font-size: 2.6rem;
  color: #81c440;
  text-align: center;
  margin-bottom: 2rem;
}

/* CTA final */
.cta-section {
  background-color: #ebfae6;
  padding: 3rem 2rem;
  border-radius: 8px;
  text-align: center;
  color: #2d2d2d;
}

.cta-section .cta-heading {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.cta-section .cta-text {
  font-size: 1.6rem;
}

.cta-section .highlight {
  background-color: #fff;
  color: #2d2d2d;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-weight: bold;
}

.panel-row-style-wide-grey, .wide-grey.panel-row-style {
	background: #81c440;
}

.panel-row-style-wide-grey,
.wide-grey.panel-row-style,
.panel-row-style-wide-grey h1,
.panel-row-style-wide-grey h3,
.wide-grey.panel-row-style h1,
.wide-grey.panel-row-style h3 {
    color: #fff;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .section-with-image {
    flex-direction: column;
  }

  .section-with-image .section-image,
  .section-with-image .section-content {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .service-header h1 {
    font-size: 2.4rem;
  }

  .service-section h2,
  .advantages-section h2,
  .cta-section .cta-heading {
    font-size: 2rem;
  }

  .service-intro {
    font-size: 1.25rem;
  }

  .service-list li,
  .advantages-list li {
    font-size: 1.15rem;
  }

  .cta-section .cta-text {
    font-size: 1.3rem;
  }
}