/* Style pour le footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    padding: 0 20px;
}

.footer-section h2 {
    font-size: 18px;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    color: #ccc;
    margin: 8px 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.social-icon {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 20px;
}

.footer-bottom {
    text-align: center;
    background-color: #222;
    padding: 10px 0;
    color: #ccc;
    font-size: 12px;
    margin-top: 20px;
    margin-bottom: 0;
}

/* Style pour les liens dans le footer */
a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Style pour les icônes de médias sociaux */
.social-icon img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    transition: 0.5s ease-in-out;
}

.footer-content > div > *::selection, .footer-content > div > * > *::selection  {
    color: #333;
    background: #fff;
}

.footer-bottom > p::selection {
    color: #222;
    background: #fff;
}

.social-icon img::selection {
    color: rgba(0, 0, 0, 0);
    background: rgba(0, 0, 0, 0);
}

.social-icon img:hover {
    transform: rotate(360deg) scale(1.2);
}