/*@todo plan marketing*/

@media (min-width: 1000px) {
    .backgroundImage {
        background-image: url("https://dev.mailex.fr/sitevitrine/steven/citelogic/public/image/images/planMarketing/etude1.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
		min-height: 700px; /* Ajuste selon la hauteur réelle de ton image ou du contenu */
        display: flex;
        align-items: center;
    }

    .backgroundImage2 {
        background-image: url("https://dev.mailex.fr/sitevitrine/steven/citelogic/public/image/images/planMarketing/etude2.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
		min-height: 500px; /* Ajuste selon la hauteur réelle de ton image ou du contenu */
        display: flex;
        align-items: center;
    }
    .backgroundImage3 {
        background-image: url("https://dev.mailex.fr/sitevitrine/steven/citelogic/public/image/images/planMarketing/etude3.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
		min-height: 500px; /* Ajuste selon la hauteur réelle de ton image ou du contenu */
        display: flex;
        align-items: center;
    }
}

.accordionMarketing{
    margin-top:8rem;
}

.accordionMarketing .accordion-item {
    border: none;
    background: transparent;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}


.accordionMarketing .padding {
    border-radius: 15px;
    padding: 2rem;
}

.accordionMarketing .accordion-item .numero {
    position: absolute;
    top: -50px;
    left: 30px;
    z-index: 10;
}


.accordionMarketing .accordion-button::after {
    margin-left: auto;
}

/* Contenu déroulé */
.accordionMarketing .accordion-body {
    padding-top: 1.5rem;
}

/* Animation lottie */
.accordionMarketing .animations {
    width: 130px;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
}

/* Responsive centrage animation */
.accordionMarketing .positionnementAnimations {
    display: flex;
    justify-content: center;
}

/* Responsive width si tu veux limiter l’accordéon */
@media (min-width: 400px) and (max-width: 570px) {
    .accordionMarketing .accordion-item {
        width: 90%;
        margin: auto;
    }
}


.espacementAbsolute {
    margin-bottom: 10rem;
}


.tarifs,.tarifsBleu{
    position: relative;
    text-align: center;
    padding: 160px 1rem 100px;
}

.tarifs::before{
    content: "";
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f5f5f5;
    z-index: -1;
}

.tarifsBleu::before{
    content: "";
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(228, 233, 248, 1);
    z-index: -1;
}

.tarifs img,.tarifsBleu img{
    width: 250px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 80px;
    transform: translate(-50%, -50%);
}

/* — texte et bouton : aucun choix de couleur ici — */
.tarifs h3,.tarifsBleu h3{
    margin-top:5rem;
}

.lead{
    font-size: 1.25rem;
    margin-bottom: .5rem;
}

.desc{
    max-width: 600px;
    margin: 1.5rem auto 3rem;
    line-height: 1.45;
}


.rcs-section{
    background:#e8f0ff;
    text-align:center;
    padding:120px 1rem 240px;
}

.rcs-section .container{
    max-width:900px;
    margin:0 auto;
}

.rcs-visuel{
    display:block;
    width:800px;
    max-width:90%;
    margin:-180px auto 0;
}

@media (min-width: 900px) {
    .rcs-visuel {
        transform: translateX(50px);
    }
}


@media (max-width: 899px) {
    .rcs-section {
        padding: 80px 1rem 200px;
    }

    .rcs-section .container {
        padding: 0 1rem;
    }

    .rcs-visuel {
        width: 100%;
        max-width: 500px;
        margin: -160px auto 0;
    }

    .rcs-visuel img {
        width: 100%;
        height: auto;
        display: block;
    }

    .rcs-section h2 {
        font-size: 1.8rem;
    }

    .rcs-section h3 {
        font-size: 1.2rem;
    }

    .rcs-section p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}





.cssMarketing-ol {
    counter-reset: item 18; /* commence à 18, donc premier li => 19 */
    list-style: none;
    padding-left: 0;
  }

  .cssMarketing-li {
    counter-increment: item;
    display: flex;
    margin-bottom: 1rem;
  }

  .cssMarketing-li::before {
    content: counter(item) ". ";
    font-weight: bold;
    width: 2em;
    margin-right: 0.5em;
    flex-shrink: 0;
  }

  .cssMarketing-contenu {
    flex: 1;
  }