.footer {
    background: #333;
    color: #fff;
    padding: 30px 20px;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 10px;
}

.footer-links, .footer-socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links, .footer-socials {
        margin-top: 15px;
    }
}
.image-logo{
    width: 50px;
    height: 50px;
    border-radius: 100px;
        transition: 0.5s;
}
.image-logo:hover{
    transform: scale(1.08);
    transition: 0.5s;
}
@media (max-width: 768px) {
    body{
        overflow:scroll;
    }
}