/* 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);
}



.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-bottom: .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;
  }
}
/* Style de base pour les éléments en surbrillance */
.highlight {
  color: var(--first-color, #33303D); /* Couleur principale avec fallback */
  filter: contrast(0.4); /* Réduction du contraste pour un effet esthétique */
}

/* 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;
}
.explain-service-list strong{
    font-weight: bold ;
}

.link_direction a {
  border-bottom: 2px solid black;
  padding-bottom: 2px;
}




.about-link{
  padding-bottom: 4px;
  border-bottom: 1px solid black;
}
button.cta{
 margin-top: 0;
}






/* /banner */
.limited-offer-banner {
  background: linear-gradient(90deg, #1e90ff, #0095ff);
  color: white;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  max-width: 480px;
  margin: 1rem auto 2rem auto;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 8px rgba(30,144,255,0.3);
}
.limited-offer-banner strong {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.limited-offer-banner .highlight {
  color: #ffd700;
}

.faq-link{
  border-bottom:1px solid black  ;
}
.section-right .btn{
  background-color: var(--primary);
}
.section-right .btn::after{
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: -4;
  transform: translateX(-20px) translateY(-10px);
  background: #1e90ff;
  filter: blur(2px);
  left: -10px;
}
.section-right .btn:hover{
  background-color: black;
}


@media screen and (max-width: 385px) {
  .cta {
    font-size: var(--normal-font-size);
    margin-top: 10px;
    margin-left: 0;
  }
 
}
@media screen and (max-width: 1150px) {
 .cta::before{
    content: '';
    width: 130px;
  }
}

/* logo */
.flex_logo{
  display: flex;
  flex-direction: row;
  justify-self: center;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
