/* Note: Les styles .hero sont maintenant gérés dans le template index.html.twig */
/* Cette section est conservée pour compatibilité mais sera surchargée par les styles inline */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #e0f2ff;
    color: #0056b3;
    width: 100%;
    box-sizing: border-box;
}

.hero .cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #0056b3;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.hero .cta-button:hover {
    background-color: #003f80;
}

.features .content {
    max-width: 1100px;

    padding: 2rem;
    background-color: #fff;

    display: flex;
    justify-content: space-between; /* Distribution égale */
    align-items: stretch; /* Alignement vertical */
    gap: 20px; /* Espace entre les éléments */
    margin: auto; /* Espacement avec les autres sections */
    padding: 10px; /* Espacement interne */
}

.features .feature {
    flex: 1; /* Chaque élément occupe la même largeur */
    text-align: center; /* Centrage du texte */
    padding: 10px; /* Espacement interne */
    border: 1px solid #ccc; /* Pour la lisibilité */
    box-sizing: border-box; /* Inclut le padding dans la largeur totale */
}

/* Responsive */
@media (max-width: 1110px) {
    .features .content {
        flex-direction: column; /* Passe les blocs en colonne pour les petits écrans */
        padding: 1rem;
    }

    .features .feature  {
        flex: none;
        width: 100%;
        max-width: 355px;
        margin: auto;
        box-sizing: border-box;
    }
}

