.privacy-site-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    padding: 18px 20px;
    background: #f5f7f9;
    color: #333;
    font-size: 13px;
}

.privacy-site-links a,
.privacy-site-links button {
    color: #245f8f;
    text-decoration: underline;
}

.privacy-site-links button {
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.privacy-banner {
    position: fixed;
    z-index: 100000;
    right: 20px;
    bottom: 20px;
    left: 20px;
    color: #1d2935;
}

.privacy-banner[hidden],
.privacy-banner__details[hidden] {
    display: none !important;
}

.privacy-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 22px;
    border: 1px solid #d8e0e7;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 38px rgba(14, 36, 55, .2);
}

.privacy-banner__content {
    max-width: 760px;
}

.privacy-banner__content strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.privacy-banner__content p {
    margin: 0;
    line-height: 1.5;
}

.privacy-banner__content a,
.privacy-form-consent a {
    color: #245f8f;
    text-decoration: underline;
}

.privacy-banner__details {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.privacy-banner__details label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
}

.privacy-banner__actions {
    display: grid;
    min-width: 240px;
    gap: 8px;
}

.privacy-button {
    min-height: 42px;
    padding: 9px 16px;
    border: 1px solid #245f8f;
    border-radius: 7px;
    background: #fff;
    color: #245f8f;
    font: inherit;
    cursor: pointer;
}

.privacy-button--primary {
    background: #245f8f;
    color: #fff;
}

.privacy-button--link {
    border-color: transparent;
    text-decoration: underline;
}

.privacy-form-consent {
    width: 100%;
    margin: 12px 0;
    color: #333;
    font-size: 12px;
    line-height: 1.45;
}

.privacy-form-consent__label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
}

.privacy-form-consent__label input {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin: 1px 0 0;
}

.privacy-form-message {
    width: 100%;
    margin: 8px 0;
    color: #a62020;
    font-size: 12px;
}

.privacy-form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 760px) {
    .privacy-banner {
        right: 10px;
        bottom: 10px;
        left: 10px;
    }

    .privacy-banner__inner {
        display: block;
        max-height: calc(100vh - 20px);
        overflow-y: auto;
        padding: 16px;
    }

    .privacy-banner__actions {
        min-width: 0;
        margin-top: 16px;
    }
}
