:root {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #0f172a;
    background-color: #f8fafc;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f1f5f9;
    min-height: 100vh;
}

.policy-shell {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

header h1 {
    margin: 0;
}

.meta {
    margin: 6px 0 0;
    color: #475569;
}

.back-link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

article {
    background: #fff;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
    line-height: 1.5;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.policy-block {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 16px;
}

.policy-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.policy-block h2 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.policy-block h2 span {
    color: #2563eb;
    font-weight: 700;
}

.policy-block ul {
    margin: 0 0 6px;
    padding-left: 20px;
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.policy-block li {
    margin: 0;
}

.policy-block p {
    margin: 0 0 8px;
    color: #1f2937;
}

.language-footer {
    margin-top: 24px;
    text-align: center;
    color: #475569;
    font-size: 0.95rem;
}

.language-footer .language-switcher {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.language-footer label {
    font-weight: 600;
    color: #0f172a;
}

.language-switcher__controls {
    display: flex;
    justify-content: center;
}

.language-switcher select {
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 0.9rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    min-width: 170px;
}

@media (max-width: 640px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    article {
        padding: 20px;
        font-size: 0.95rem;
    }
}
