/* Общий контейнер страницы */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
    position: relative !important;
    bottom: auto !important;
}

/* Вертикальное расположение элементов в футере */
.footer-contact {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.footer-contact-item {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 5px !important;
}

/* Корректировка размеров футера */
.footer {
    padding: 15px 0 !important;
}

.footer-top {
    margin-bottom: 8px !important;
}

.footer-bottom {
    margin-top: 5px !important;
    padding-top: 5px !important;
} 