@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

/* Стили для приклеивания футера к низу */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Стили для футера */
footer {
    width: 100%;
    background: #222;
    color: #fff;
    padding: 16px 0;
    margin-top: auto;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1em;
}
.footer-link {
    color: #ffe282;
    text-decoration: none;
    transition: text-decoration 0.2s, color 0.2s;
}
.footer-link:hover {
    text-decoration: underline;
    color: #fff;
}
@media (max-width: 700px) {
    .footer-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
} 