/* Styles spécifiques à la page Process */
main.services.container {
  /* padding-top: 1rem; */
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}

.services.section {
  gap: 0;
}

.process-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.process-steps-section {
  padding: 2rem 0 1rem 0;
}

.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  /* margin-top: 2rem; */
}

.process-step {
  display: flex;
  align-items: flex-start;
  background: #fafbfc;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(41, 38, 39, 0.04);
  padding: 1.5rem 2rem;
  gap: 1.5rem;
  transition: box-shadow .2s;
}

.step-number {
  min-width: 48px;
  min-height: 48px;
  background: var(--special-section-color, #eaeaea);
  color: var(--black-color, #222);
  font-weight: 700;
  /* border-right: 2px solid black; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  box-shadow: 0 2px 8px 0 rgba(41, 38, 39, 0.04);
}

.process-step::before {
  content: '';
  display: block;
  position: relative;
  width: 20px;
  height: 3px;
  top: 55px;
  left: 55px;
  background-color: #1e90ff;
}
.process-how-it-works .process-step::before{
    content: '';
    display: none;
}

.step-content h3 {
  margin: 0 0 .3rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black-color, #222);
}

.step-content p {
  margin: 0;
  color: #444;
  /* font-size: 1rem; */
}

.step-content .explication {
  padding-left: 10px;
  margin-top: 13px;
  border-left: 2px solid var(--primary);
  /* font-style: italic; */
  font-size: small;
}

.cta::before {
  content: '';
  animation: none;
  width: 140px;
}

.btn {
  transition: background-color 0.2s ease-in-out;
  border-right: 2px solid white;
}

.btn:hover::before {
  animation: none;
  background-color: var(--primary);
}

@media screen and (max-width: 385px) {
  .cta {
    font-size: var(--normal-font-size);
    margin-top: 10px;
    margin-left: 0;
  }
}

.process-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  text-align: center;
  padding: 2.5rem 0 1rem 0;
}


.cta-title {
  font-size: larger;
  font-weight: 700;
  margin: .5rem;
}

.cta-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
  main.services.container {
    padding-top: 1rem;
  }
  .process-steps-list {
    gap: 1.2rem;
    padding: 0 1rem;
  }

  .process-step {
    padding: 1.2rem 1rem;
  }
}

@media (max-width: 600px) {
  .process-hero {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .process-title {
    font-size: 1.3rem;
  }

  .process-steps-list {
    gap: 1rem;
    padding: 0 .2rem;
  }

  .process-step {
    flex-direction: column;
    align-items: start;
    padding: 1rem .5rem;
    gap: .7rem;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: .5rem;
  }
}

.highlight {
  color: var(--first-color, #33303D);
  filter: contrast(0.3);
}




/* page service style in process style file */
.link__service {
  margin-left: 0;
  margin-top: 3rem;
  padding: 8px 12px;
}

p.annonce-services {
  font-size: 1.3rem;
  font-weight: 400;
  padding-top: 2rem;
  margin-left: 0;
}

.explain-service-list {
  /*font-weight: 300;*/
  margin-bottom: 3rem;
  font-size: medium;
}


.link_direction a {
  border-bottom: 2px solid black;
  padding-bottom: 2px;
}