#page-prestations {
    margin: 0 auto;
    width: fit-content;
    font-family: 'noto sans jp', sans-serif;

    .text-presentation {
        padding: 2rem;
        font-size: 1rem;
        line-height: 1.5;
        text-align: start;
        margin-bottom: 2rem;
        color: rgb(66, 65, 65);
    }

    .etapes-container {
        display: flex;
        gap: 3rem;
        margin-bottom: 5rem;
        width: 100%;



        div {
            display: flex;
            flex-direction: column;
            width: fit-content;
            max-width: 440px;
            height: 270px;
            padding: 1rem;
            text-align: left;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.50);
            border-radius: 25px;

            i {
                font-size: 4rem;
                padding-bottom: 1rem;
                padding-left: 0.4rem;
                margin: 0 auto;
            }

            p:first-of-type {
                background: rgba(184, 180, 180, 0.3);
                color: black;
                padding: 0.5rem 1rem;
                border-radius: 20px;
                font-weight: bold;
                text-align: center;
                font-size: 1.5rem;
                display: inline-block;
                width: fit-content;
                margin: 0.8rem auto;
            }

            p:first-of-type::before {
                content: none;
            }

            p {
                padding: 0.4rem;
                font-size: clamp(14px, 1rem, 18px); /* Mínimo 14px, ideal 16px, máximo 18px */               
                text-align: start;
                color: rgb(66, 65, 65);
            }

            p::before {
                content: "•";
                padding-right: 0.4rem;
            }

            span {
                font-size: 0.8rem;
                opacity: 0.8;
                display: block;
                margin-top: 0.4rem;
            }

            .x-size {
                display: inline-block;
            }


        }



        
    }

    .full-informations {
        a{
            display: block;
            width: fit-content;
            margin: 2rem auto;
            padding: 1rem;
            background: white;
            color: white;
            background-color: black;
            border-radius: 8px;
            font-weight: bold;
            text-decoration: none;
        }       
    }
}

@media screen and (max-width: 1500px) {
    #page-prestations {
        
        padding-bottom: 1rem;
        .etapes-container {
            flex-direction: column;
            align-items: center;
            gap: 5rem;

            div {
                max-width: 550px;
                width: 100%;
            }
        }

        .full-informations {
            margin-bottom: 3rem;
        }
    }
}

@media screen and (max-width: 700px) {
    #page-prestations {
        margin: 0 1rem;
        .text-presentation {
            padding: 1rem;
            p {
                font-size: 14px;
            }
        }
        .etapes-container {
            div {
                width: 90%;
                i {
                    font-size: 3rem;
                }
                p:first-of-type {
                    font-size: 1.3rem;
                }
                p {
                    font-size: 14px;
                }
                
            }
        }
    }
}
