/* CSS ici */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.containerplatine {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.card {
    position: relative;
    background-color: #2b1b42; /* Couleur violette de la carte */
    border-radius: 15px;
    padding: 40px;
    max-width: 900px;
    color: #ffffff;
    text-align: left;
    overflow: hidden;
    z-index: 5;
    padding-right: 100px;
    padding-left: 50px;
    margin: 50px 10px 0px 10px;
}

.background-circle {
    position: absolute;
    top: 20px;
    left: 10px;
    width: 300px;
    height: 300px;
    background-color: #472c5f; /* Cercle en arrière-plan */
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
}

.subtitle {
    font-size: 0.9em;
    font-style: italic;
    color: #b0a8c5;
    margin-bottom: 10px;
}

.title {
    font-size: 2em;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.description {
    font-size: 1em;
    color: #d1c3e2;
    margin-bottom: 20px;
}

.benefits {
    list-style-type: disc;
    padding-left: 20px;
    color: #ffff;
}

.benefits li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.benefits li strong {
    color: #ffffff; /* Texte en gras pour accentuer les points clés */
}

/*-------btn close modal -----*/

.containerplatine button img {
    width: 17px;
    cursor: pointer;
    transform: translate(54em, -55px);
    position: absolute;
    z-index: 8;
}
.containerplatine button {
    margin-top: -180px;
}
.margin-40 {
    margin-left: 40px;
}

/*-----------RESPONSIVE----------------------*/

@media (max-width: 380px) {
    /*--------Button close modal--------*/
    .containerplatine button img {
        width: 17px;
        cursor: pointer;
        transform: translateX(15em) !important;
        margin-top: -15em !important;
        position: absolute;
        z-index: 8;
    }
}

@media (max-width: 480px) {
    .card {
        position: relative;
        background-color: #2b1b42; /* Couleur violette de la carte */
        border-radius: 15px;
        padding: 0px;
        max-width: 300px;
        color: #ffffff;
        text-align: left;
        overflow: hidden;
        z-index: 10;
        padding-right: 20px;
        padding-left: 20px;
        margin: 50px 10px 0px 0px;
    }

    .title {
        font-size: 20px !important;
    }
    #platineoffer1 {
        font-size: 35px !important;
    }

    /*--------Button close modal--------*/
    .containerplatine button img {
        width: 40px;
        cursor: pointer;
        transform: translateX(16em);
        margin-top: -7.5em !important;
        position: absolute;
        z-index: 8;
    }
    .margin-40 {
        margin-left: 10px;
    }
}

@media (min-width: 505px) and (max-width: 950px) {
    .close-platine {
        position: inherit;
        top: -12px;
        right: 10px;
    }
    .containerplatine {
        padding: 0 !important;
    }
    .card {
        position: relative;
        background-color: #2b1b42; /* Couleur violette de la carte */
        border-radius: 15px;
        padding: 0px;
        max-width: 490px;
        color: #ffffff;
        text-align: left;
        overflow: hidden;
        z-index: 10;
        padding-right: 20px;
        padding-left: 20px;
        margin: 50px 10px 0px -250px;
    }
}
