.bodygold {
    justify-content: center;
    align-items: center;
    /* min-height: 100vh; */
}

.card {
    position: relative;
    background-color: rgb(58, 29, 80, 0.72); /* Couleur violette de la carte */
    border-radius: 33px;
    padding: 40px;
    width: 900px;
    color: #ffffff;
    text-align: left;
    overflow: hidden;
    min-height: 400px;
    height: 500px;
    z-index: 2;
}

.background-circle {
    position: absolute;
    top: 25px;
    left: 20px;
    width: 450px;
    height: 450px;
    background-color: #3a1d50; /* Cercle en arrière-plan */
    border-radius: 50%;
    opacity: 0.8;
}

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

.subtitle {
    font-size: 0.9em;
    font-style: italic;
    color: #c4a6f1; /* Couleur dorée pour l'accompagnement */
    margin-bottom: 10px;
}

.title {
    font-size: 2em;
    font-weight: bold;
    color: #f0d95b; /* Couleur dorée pour Gold Offer */
    margin-bottom: 20px;
}

.description {
    font-size: 20px;
    color: #c6b8d9;
    margin-bottom: 20px;
    font-weight: 500;
}

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

.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 -----*/

.bodygold button img {
    width: 17px;
    cursor: pointer;
    transform: translateX(55em);
    position: absolute;
    z-index: 8;
    margin-top: 60px;
}

/*-------Responsive------*/
@media (max-width: 380px) {
    /*----Body du modal----*/
    .bodygold {
        transform: translateX(2em);
    }
    .benefits {
        font-size: 16px !important;
        font-weight: normal !important;
    }
    .description {
        font-size: 16px !important;
        font-weight: normal !important;
    }

    /*----Button close modal---*/
    .bodygold button img {
        width: 17px;
        cursor: pointer;
        transform: translateX(5em);
        margin-top: 5em;
        position: absolute;
        z-index: 8;
    }
}

@media (max-width: 428px) {
    .benefits {
        font-size: 16px !important;
        font-weight: normal !important;
    }
    .card {
        min-height: unset;
    }
    .description {
        font-size: 16px !important;
        font-weight: normal !important;
    }
    /*----Body du modal----*/
    .bodygold {
        transform: translateX(2em);
    }

    /*----Button close modal---*/
    .bodygold button img {
        width: 17px;
        cursor: pointer;
        transform: translateX(5em);
        margin-top: 5em;
        position: absolute;
        z-index: 8;
    }
    .card {
        padding: 0;
        height: auto;
    }
    .background-circle {
        top: 25px;
        left: 0;
        width: 100%;
        height: 50%;
    }
}
