footer {
    background-color: black;
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer hr.top {
    margin: 0;
}


footer .rows {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    min-height: 300px;
}



footer a, footer p {
    margin: 10px 0;
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer h4 {
    font-weight: bold;
}

footer li {
   padding: 5px 0;
}

footer .cookies {
     padding: 10px 0;
    text-align: center;
}

footer .logos-top {
    padding: 40px 0;
}

footer .logos-top img {
    max-height: 40px;
    filter: brightness(0) invert(1);
}


footer .logos {
    display: flex;
    align-items: center;
    justify-content: center;
}


.social-links {
    display: flex;
    gap: 25px;
    margin-top: 15px;
}

.social-links img {
    width: 25px;   
    height: 25px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.scale img {
     transform: scale(1.3);
}