.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #111;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.cookie-consent-banner__text {
    flex: 1 1 320px;
}

.cookie-consent-banner__text a {
    color: #ffd166;
    text-decoration: underline;
    margin-left: 4px;
}

.cookie-consent-banner__actions {
    display: flex;
    gap: 8px;
    margin: 0;
}

.cookie-consent-banner__button {
    appearance: none;
    border: 0;
    background: #ffd166;
    color: #111;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.cookie-consent-banner__button:hover,
.cookie-consent-banner__button:focus {
    background: #ffe199;
    outline: none;
}

@media (max-width: 640px) {
    .cookie-consent-banner__inner {
        padding: 12px 16px;
    }

    .cookie-consent-banner__actions {
        width: 100%;
        justify-content: flex-end;
    }
}

.legal-page {
    max-width: 820px;
    margin: 40px auto;
    padding: 0 20px 60px;
    line-height: 1.65;
}

.legal-page h1 {
    margin-bottom: 8px;
}

.legal-page .legal-page__updated {
    opacity: 0.7;
    font-size: 14px;
    margin-bottom: 32px;
}

.legal-page h2 {
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-page h3 {
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.legal-page table th,
.legal-page table td {
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 8px 12px;
    text-align: left;
    vertical-align: top;
}

.legal-page table th {
    background: rgba(0, 0, 0, 0.04);
}
