/* Исправление проблемы с белой полоской под футером */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    background-color: #fff;
    position: relative;
}

/* Фиксация контейнера на всю ширину */
body > * {
    width: 100%;
    max-width: 100%;
}

/* Убираем серый фон по краям */
body {
    background-color: #fff;
    min-height: 100vh;
    position: relative;
}

/* Контейнер на всю доступную ширину */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 820px) {
    .language-switcher {
        margin-right: 15px;
    }
    
    .header-content {
        position: relative;
    }
}

/* Стили для футера */
footer {
    background-color: #2e2570;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
    width: 100%;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
    overflow-x: hidden;
    clear: both;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a {
    color: white;
    font-size: 24px;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.8;
} 