/* Général */
body {
    /* font-family: 'Arial', sans-serif; */
    color: #333;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
}

/* Conteneur principal */
.row.margin-bottom-45 {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Titres */
h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

h2 span {
    color: #00b19d; /* Vert Jungle Bike */
}

/* Texte */
p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Images */
.image-container img {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Gestion des images dans les colonnes */
.col-md-4 img {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
}

/* Ajustements Responsive */
@media screen and (max-width: 768px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .col-md-4 img {
        max-width: 250px;
    }

    .col-md-8 {
        text-align: left;
        padding: 10px;
    }
}
