/* Styles pour la section Soins et Conseils */
#alimentation,
#habitat,
#sante,
#conseils {
    padding: 20px;
    margin-bottom: 20px;
    background-color: #E6D4B4; /* Beige Amande */
    border-radius: 8px;
}

#alimentation h2,
#habitat h2,
#sante h2,
#conseils h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #B0754A; /* Marron Noisette */
    margin-bottom: 10px;
}

#alimentation p,
#habitat p,
#sante p,
#conseils p {
    font-family: 'Montserrat', serif;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

#alimentation img,
#habitat img {
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#conseils ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

#conseils ul li {
    margin-bottom: 10px;
    color: #333;
    font-family: 'Montserrat', serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    #alimentation,
    #habitat,
    #sante,
    #conseils {
        padding: 15px;
    }

    #alimentation h2,
    #habitat h2,
    #sante h2,
    #conseils h2 {
        font-size: 1.2em;
    }

    #alimentation p,
    #habitat p,
    #sante p,
    #conseils p {
        font-size: 1em;
    }

    #conseils ul li {
        margin-bottom: 8px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    #alimentation,
    #habitat,
    #sante,
    #conseils {
        padding: 10px;
    }

    #alimentation h2,
    #habitat h2,
    #sante h2,
    #conseils h2 {
        font-size: 1.1em;
    }

    #alimentation p,
    #habitat p,
    #sante p,
    #conseils p {
        font-size: 0.9em;
    }

    #conseils ul li {
        margin-bottom: 6px;
        font-size: 0.9em;
    }
}
