* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

.privacy-page {
    min-height: 100%;
    background: #f5f7fb;
    color: #10233f;
}

.privacy-shell {
    width: min(960px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 56px;
}

.privacy-header,
.privacy-section {
    border-bottom: 1px solid #d8dee9;
}

.privacy-header {
    padding-bottom: 28px;
}

.privacy-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    color: #10233f;
    font-weight: 700;
    text-decoration: none;
}

.privacy-brand:hover,
.privacy-brand:focus {
    color: #274c77;
    text-decoration: underline;
}

.privacy-brand img {
    border-radius: 8px;
}

.language-switcher {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    min-height: 40px;
    margin: 0 0 24px;
    padding: 4px;
    background: #ffffff;
    border: 1px solid #d8dee9;
    border-radius: 8px;
}

.language-switcher button {
    min-width: 42px;
    min-height: 30px;
    padding: 4px 8px;
    color: #4b5563;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
}

.language-switcher button:hover,
.language-switcher button:focus,
.language-switcher button.is-active {
    color: #10233f;
    background: #edf4ff;
    border-color: #b8cee7;
}

.privacy-kicker,
.privacy-updated {
    color: #4b5563;
    font-size: 0.95rem;
}

.privacy-kicker {
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.privacy-header h1 {
    max-width: 760px;
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
}

.privacy-section {
    padding: 28px 0;
}

.privacy-section h2 {
    margin-bottom: 12px;
    font-size: 1.45rem;
}

.privacy-section p {
    max-width: 760px;
    color: #24364f;
    font-size: 1rem;
    line-height: 1.65;
}

.privacy-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.privacy-feature {
    min-height: 160px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #d8dee9;
    border-radius: 8px;
}

.privacy-feature h3 {
    margin-bottom: 10px;
    color: #17233c;
    font-size: 1.1rem;
}

.privacy-feature p {
    margin-bottom: 0;
}

@media (max-width: 720px) {
    .privacy-shell {
        width: min(100% - 24px, 960px);
        padding-top: 32px;
    }

    .privacy-feature-list {
        grid-template-columns: 1fr;
    }
}
