 /* Footer */
 footer {
     background-color: var(--gris-fonce);
     color: var(--blanc);
     padding: 60px 0 30px;
 }

 .footer-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-logo h3 {
     color: var(--vert-clair);
     margin-bottom: 10px;
 }

 .footer-links h4,
 .footer-services h4,
 .footer-contact h4 {
     color: var(--orange);
     margin-bottom: 20px;
     position: relative;
 }

 .footer-links h4:after,
 .footer-services h4:after,
 .footer-contact h4:after {
     content: '';
     display: block;
     width: 40px;
     height: 2px;
     background-color: var(--orange);
     margin-top: 8px;
 }

 .footer-links ul,
 .footer-services ul {
     list-style: none;
 }

 .footer-links ul li,
 .footer-services ul li {
     margin-bottom: 10px;
 }

 .footer-links ul li a,
 .footer-services ul li a {
     transition: color 0.3s ease;
 }

 .footer-links ul li a:hover,
 .footer-services ul li a:hover {
     color: var(--orange);
 }

 .footer-contact p {
     margin-bottom: 15px;
     display: flex;
     align-items: center;
 }

 .footer-contact i {
     margin-right: 10px;
     color: var(--orange);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 #icones {
     padding: 5px;
 }