body {
    margin: 0px auto 0;
    max-width: 900px;
    font-family: Arial, sans-serif;
    /*font-family: 'Inter', sans-serif;*/
    /*background: linear-gradient(135deg, #1e1e1e, #3a3a3a);
    color: #fff;*/
    background: radial-gradient(circle at top, #f5f7ff, #dde3f0);
    color: #111;
    line-height: 1.5;
}

h1,
h2 {
    color: #333;
}
h1 {
    font-size: 18px;
    text-align: center;
}

h2 {
    margin-top: 20px;
    font-size: 16px;
}

p {
    margin: 8px 0;
    color: #333;
    line-height: 1.5;
    font-size: 14px;
}

p a {
    color: #444342;
    text-decoration: none;
    font-weight: 400;
}

p a:hover {
    text-decoration: underline;
    color: #ff7a00;
}

li {
    margin: 8px 0;
    color: #333;
    line-height: 1.3;
    font-size: 14px;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    height: 50px;
}

.lang-switcher a {
    margin: 5px 0 7px 7px;
    text-decoration: none;
    color: #666;
    font-weight: bold;
    font-size: 14px;
    padding: 2px 3px;
}

.lang-switcher a.active {
    color: #000;
    text-decoration: underline;
    background-color: #fcb74f;
}

.anonce {
    max-width: 900px;
    margin: 0px auto 20px;
    padding: 0 15px;
}

.footer {
    margin-top: 60px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(14, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);

    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.05);
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.footer-brand {
    font-size: 18px;
    font-weight: 600;
    color: #fab727;
    opacity: 0.9;
}

.footer-right p {
    margin: 0;
    font-size: 13px;
    color: #f7f6f6;
    opacity: 0.85;
}

/* Адаптивність */
@media (max-width: 500px) {
    .footer {
        margin-top: 30px;
        padding: 20px 20px;
        /*flex-direction: column;*/
        text-align: center;
        gap: 9px;
    }
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    color: #444342;
    font-weight: 400;
}

.legal-links a {
    color: #444342;
    text-decoration: none;
}

.legal-links a:hover {
    color: #646260;
    text-decoration: underline;
}

.lang-switch {
    margin-bottom: 20px;
    text-align: right;
}

.lang-switch a {
    margin-right: 10px;
}