/* Style de base */
html {
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    font-family: sans-serif;
}

/* Conteneur principal avec marges */
.main-content {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Pour les sections qui doivent s'aligner avec le conteneur principal */
.content-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Style pour le gradient */
.gradient-bg {
    background: linear-gradient(90deg, #4F46E5 0%, #7C3AED 100%);
}

/* Fix conteneurs images - spécificité maximale */
div.bg-gray-50.p-6.rounded-2xl.shadow-lg.mt-8.md\:mt-0.flex.justify-center.items-center {
    width: fit-content;
    margin: 0 auto;
}

/* Responsive - supprime les marges sur mobile */
    @media (max-width: 768px) {
        .main-content {
            width: 100%;
        }

    }