body {
    background-color: #d3d3d3;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-y: auto;
}


.card-left h1 {
    font-size: 2em; /* Ajuste la taille des titres de la carte */
}

.info-column h3 {
    font-size: 1.6em; /* Ajuste la taille des sous-titres */
}

.info-column p {
    font-size: 1.2em; /* Ajuste la taille du texte des paragraphes */
}

.button-container {
    display: flex;
    justify-content: space-between;
    width: 300px;
    margin: 20px auto 0 auto;
}

.text-site-button {
    text-decoration: none;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
}

.site-button {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #00C0C0;
    color: white;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100px;
}

.site-button:hover {
    background-color: #00b0b0;
}

.cards-container-wrapper {
    display: flex;
    flex-wrap: wrap; /* Permet aux cartes de passer à la ligne suivante si l'espace est insuffisant */
    gap: 150px; /* Espace entre les cartes */
    justify-content: center; /* Centre les cartes horizontalement */
    margin-top: 80px;
}

.cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
}

.card {
    display: flex;
    position: relative;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease-in-out; /* Transition pour l'animation de zoom */
}

.card-blocked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Couleur noire semi-transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    z-index: 10; /* Assure que ce soit au-dessus du contenu de la carte */
}

.overlay-content {
    text-align: center;
    color: white;
    font-size: 2em;
    font-family: Arial, bold, serif;
}

.card-blocked:hover {
    transform: scale(1.05); /* Grossit la carte à 105% lorsqu'on la survole */
}

.card:hover {
    transform: scale(1.05); /* Grossit la carte à 105% lorsqu'on la survole */
}

.card-top {
    padding: 20px;
    background-color: #00C0C0;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-top img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin-bottom: 10px;
}

.card-bottom {
    padding: 20px;
    background-color: white;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-columns {
    display: flex;
    flex: 30;
    position: relative;
    align-items: flex-start; /* Aligne les colonnes en haut */
}

.info-column {
    width: 100%; /* Ajustement pour répartir l'espace également entre les colonnes */
    padding: 0; /* Enlève le padding pour compacter les colonnes */
    position: relative;
}

.info-column h3, .info-column p {
    margin: 1px; /* Enlève les marges pour compacter le contenu */
    padding: 5px 0; /* Ajoute un léger padding pour l'espacement */
    line-height: 40px; /* Ajuste la hauteur de ligne pour compacter le texte */
}

@media only screen and (max-width: 640px) {
    .cards-container-wrapper {
        padding-bottom: 30px; /* Ajoute un espace de 50px en bas */
        gap: 30px; /* Réduit l'espace entre les cartes à 30px */
    }

    .cards-container-wrapper {
        display: flex;
        flex-wrap: wrap; /* Permet aux cartes de passer à la ligne suivante si l'espace est insuffisant */
        gap: 50px; /* Espace entre les cartes */
        justify-content: center; /* Centre les cartes horizontalement */
        margin-top: 30px;
    }

}