.elementor-12 .elementor-element.elementor-element-cb6bcbb{--display:flex;}.elementor-12 .elementor-element.elementor-element-bca18ee{--display:flex;}.elementor-12 .elementor-element.elementor-element-427b005{--spacer-size:104px;}.elementor-12 .elementor-element.elementor-element-6a95c19{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-2fb7d29 */.procedure-section {
 
  padding: 50px 20px;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  max-width: 1200px;
  margin: 40px auto 80px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.procedure-section h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #61ce70;
  text-shadow: 0 0 8px #61ce70;
}

/* Container des blocs */
.procedure-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Chaque bloc */
.procedure-box {
  background: #222a20;
  border-radius: 15px;
  padding: 30px 25px;
  flex: 1 1 350px;
  max-width: 450px;
  text-align: left;
  box-shadow: 0 0 15px rgba(97, 206, 112, 0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
  user-select: none;
}

.procedure-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(97, 206, 112, 0.6);
}

/* Titres des blocs */
.procedure-box h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #9de7a9;
  text-shadow: 0 0 6px #9de7a9;
  font-weight: 700;
}

/* Liste */
.procedure-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.procedure-box li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 30px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #d5d5d5;
  transition: color 0.3s ease;
}

.procedure-box li strong {
  color: #b1e087;
}

/* Check icon avant chaque li */
.procedure-box li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #61ce70;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .procedure-container {
    flex-direction: column;
    align-items: center;
  }
  .procedure-box {
    max-width: 100%;
  }
}/* End custom CSS */