
.content-section2 {
    width: 100%;
    background-color: #001f3f;
    padding: 10px 0;
	margin-top: -10px;
	height: 40px;
	
	
}

.oracle.image-oracle {
    position: relative;
    width: 100%;
    height: 70vh; /* Ajustez cette valeur pour ajuster la hauteur */
    overflow: hidden;
}

.oracle.image-oracle img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Assure que l'image couvre toute la section sans être déformée */
    transform: translate(-50%, -50%);
}

.hero-text {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.5); /* Fond semi-transparent pour améliorer la lisibilité */
    padding: 20px;
    border-radius: 10px;
}

/* Section de texte */
.text-section {
    max-width: 1000px; /* Ajustez cette valeur si nécessaire */
    margin: 0px auto;
    padding: 10px;
    background-color: #003366;
    border-radius: 10px;
    text-align: left; /* Assure que tous les textes sont alignés à gauche */
	padding-bottom: 40px;
}

.text-section h2, .text-section h3, .text-section p, .text-section li {
    color: #FFFFFF; /* Tous les textes en blanc */
    margin-left: 40px;
    margin-right: 40px;
}

/* Listes */
.text-section ul {
    list-style-type: none; /* Supprime le style par défaut des listes */
    padding-left: 20px; /* Ajoute un padding pour que les puces ne collent pas au bord */
}

.text-section ul li::before {
    content: '•'; /* Utilise un point pour chaque élément de la liste */
    color: #FFFFFF; /* Couleur du point */
    display: inline-block; 
    width: 1em; /* Espacement entre le point et le texte */
    margin-left: -1em; /* Positionne le point en dehors du texte */
}

.text-section ul li {
    margin-bottom: 10px; /* Ajoute un espace entre les éléments de la liste */
}

/* Sections vides */
.empty-section {
    width: 100%;
    height: 0px; /* Ajustez cette valeur selon vos besoins */
    background-color: #003366;
}

.content-section {
    width: 100%;
    background-color: #003366;
    padding: 20px 0;
}

/* Boutons */
.button-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px; /* Espace entre les boutons */
}

.button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 15%; /* Ajustez cette valeur en fonction de vos besoins */
}

.custom-button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-button:hover {
    transform: scale(1.05);
}

.button-bg {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid white; /* Bordure blanche autour de l'image */
}

.button-text {
    margin-top: 10px;
    font-size: 1.2em;
    text-align: center;
    color: white;
    max-width: 100%; /* S'assure que le texte ne dépasse pas la largeur du bouton */
}

/* Réponses pour petits écrans */
@media (max-width: 900px) {
    .button-wrapper {
        width: 45%; /* 2 buttons per row on small screens */
    }

    .button-container {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 20px; /* Espace entre les boutons */
    }
    
    .button-text {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .text-section {
        border-radius: 0px;
    }
}




@media (max-width: 480px) {
    .text-section h2, .text-section h3, .text-section p, .text-section li {
        color: #FFFFFF; /* Tous les textes en blanc */
        margin-left: 10px;
        margin-right: 10px;
    }

    .button-wrapper {
        width: 100%; /* 1 button per row on very small screens */
    }

    .button-text {
        font-size: 14px;
    }
	
.oracle.image-oracle {
    position: relative;
    width: 100%;
    height: 60vh; /* Ajustez cette valeur pour ajuster la hauteur */
    overflow: hidden;
}
	
	
.content-section {
    width: 100%;
    background-color: #003366;
    padding: 0px 0;
}
	
}