/* Style pour le site */
.hero-section {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    text-align: center;
}

.card img {
    height: 200px;
    object-fit: cover;
}
/* CSS pour réduire et centrer les images */
        .carousel-item img {
            max-width: 70%; /* Taille des images réduite à 70% de leur taille d'origine */
            height: auto; /* Conserve les proportions */
            margin: 0 auto; /* Centre horizontalement */
        }

footer {
    background-color: #222;
    color: #ccc;
}