.footer {
    margin-top: -40px;
    width: 100vw;
    background: var(--logo-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px 0 0;
    z-index: 9999;
    position: relative;
}

.footer-content {
    width: 100%;
    max-width: 1460px;
    padding: 40px 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-width: 260px;
}

/* --- Шрифти --- */
.footer-column h2 {
    font-family: "e-Ukraine-Bold", sans-serif;
    font-size: 1rem;
    color: var(--button-text);
    margin-top: 0.5rem;
}

.footer-column p,
.footer-column a {
    font-family: "e-Ukraine-Regular", sans-serif;
    font-size: 0.9rem;
    color: var(--button-text);
    margin: 0;
    text-decoration: none;
}

.footer-column a {
    text-decoration: underline;
}

/* --- Логотип і назва --- */
.footer-column img.header-image {
    width: 70px;
    height: auto;
    margin-bottom: 10px;
}

.footer-column .big-text {
    font-family: "e-Ukraine-Bold", sans-serif;
    font-size: 1.2rem;
    color: var(--button-text);
    margin: 0;
}

/* --- Соціальні кнопки --- */
.social-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.social-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--button-text);
    border-radius: 50%;
    transition: transform 0.2s ease-in-out;
}

.social-buttons a:hover {
    transform: scale(1.1);
}

.social-buttons img {
    width: 18px;
    height: 18px;
}

/* --- Нижній блок (якщо є) --- */
.bottom-block {
    width: 100vw;
    background: var(--button-text);
    color: var(--secondary-text);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
}

.bottom-block p {
    margin: 0;
    font-family: "e-Ukraine-Regular", sans-serif;
}

.title-column {
    flex-direction: row;
    min-height: 160px;
    justify-content: center;
    align-content: center;
    align-items: center;
}

/* --- Мобільна адаптація --- */
@media (max-width: 750px) {
    .footer-column {
        width: 100%;
    }

    .footer-column h2 {
        font-size: 1.2rem;
    }

    .footer-column a,
    .footer-column p {
        font-size: 0.9rem;
        margin: 10px 0;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .social-buttons {
        justify-content: flex-start;
    }
}
