body {
    font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
    margin: 0;
    padding: 0;
    background: linear-gradient(184deg, rgba(0, 0, 0, 1) 61%, rgba(33, 0, 143, 1) 100%, rgba(0, 0, 0, 1) 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Titre Principal */
.main-title {
    text-align: center;
    color: #ffffff;
    margin-top: 30px;
    font-size: 2.5rem;
}

/* Contexte Section */
.contexte-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    margin: 0 auto;
    max-width: 1200px;
    /* Définir une largeur maximale pour votre section */
    margin-bottom: 50px;
}

.image-container {
    flex: 1;
    max-width: 300px;
    /* Limite la largeur de l'image */
}


@keyframes float {
    0% {
        transform: translateY(0);
        /* Position initiale */
    }

    50% {
        transform: translateY(-10px);
        /* Déplace l'image vers le haut de 10 pixels */
    }

    100% {
        transform: translateY(0);
        /* Retourne à la position initiale */
    }
}

.image-container img {
    width: 100%;
    /* S'adapte à la largeur du conteneur */
    height: auto;
    /* Conserve les proportions de l'image */
    animation: float 4s ease-in-out infinite;
    /* Applique l'animation de flottement */
    transition: transform 0.3s ease;
    /* Transition fluide pour d'autres transformations */
}

.image-container img:hover {
    transform: translateY(-15px);
    /* Déplace l'image un peu plus haut au survol */
}

.separator {
    width: 2px;
    background-color: #ffffff;
    height: 250px;
    margin: 0 50px;
    border-radius: 15px;
}

.text-container {
    max-width: 600px;
}

.text-container h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.text-container p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.text-container button {
    cursor: pointer;
}

.text-container button:hover {
    color: #ffffff;
}

/* Details Section */
.details-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px;
    flex-wrap: wrap;
}

.detail-box {
    background-color: #0c0e2e;
    padding: 8px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgb(27, 2, 190);
    border: 2px solid #0e168b;
    flex-basis: calc(33% - 30px);
    max-width: 300px;
    margin-bottom: 20px;
}

.detail-box h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 20px;
}

.title-hr {
    width: 380px;
    /* Largeur de la barre */
    border: 2px solid #ffffff;
    /* Couleur et épaisseur */
    margin: 20px auto;
    /* Espace autour de la barre */
    box-shadow: 0 0 10px #3801ff;
    /* Ombre pour un effet stylisé */
    border-radius: 15px;
}

button.learn-more {
    width: 12rem;
    height: auto;
}

button {
    color: #ffffff;
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #282936;
    border-radius: 1.625rem;
}

button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 15px;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

button:hover .circle {
    width: 100%;
}

button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

button:hover .button-text {
    color: #fff;
}

.Bouton {
    padding: 0.5em 1em;
    /* Ajuste le padding si nécessaire */
    font-size: 16px;
    /* Augmente la taille de la police */
    border-radius: 0.4em;
    /* Ajuste le border-radius si nécessaire */
    background: #052155;
    cursor: pointer;
    border: 1px solid #ffffff;
    transition: all 0.3s;
    width: fit-content;
    /* Ajuste la largeur en fonction du contenu */
    display: inline-block;
    /* Assure que le bouton ne s'étend pas sur toute la largeur */
    text-align: center;
    /* Centre le texte à l'intérieur du bouton */
    box-shadow: 0 0 10px #ffffff;
    border: 3px solid #ffffff;
}

.Bouton:hover {
    transform: scale(1.05);
    /* Augmente légèrement la taille du certificat lorsqu'il est survolé */
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 10px #ffffff;
}

.info {
    display: flex;
    color: #fff;
    font-weight: 700;
    gap: 5px;
    flex-direction: column;
}