.footer {
    background-color: #1a1a1a;
    color: #f0f0f0;
    padding: 30px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand,
.footer-contact,
.footer-social {
    flex-basis: 200px;
}

.footer-logo {
    width: 50px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.footer-name {
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffc107;
}

.footer-copy {
    font-size: 0.8em;
    opacity: 0.7;
    margin-top: 5px;
}

.footer a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.footer a:hover {
    color: #ffc107;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;

}

.footer-social a {
    display: inline-block;
}

/* Стилі для контактів */
.footer-contact {
    text-align: center;
}

.footer-contact a {
    margin-bottom: 5px;
    font-size: 0.9em;
}

.footer__icons {
    display: block;
    width: 50px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-brand,
    .footer-contact,
    .footer-social {
        margin-bottom: 0px;
        width: 100%;

    }
    .footer__icons {
        width: 40px;
    }
    .footer-contact {
        text-align: center;

    }
    .footer-container {
        gap:15px;
    }
    .footer-brand, .footer-contact, .footer-social {
        flex-basis: 0px;
    }
    .footer-copy {
        margin-bottom: 5px;
    }
    .footer {
        padding: 30px 15px;
    }
}
