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

.privacy-grid {
    align-items: flex-start;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) 390px;
}

.privacy-content,
.privacy-request-card,
.privacy-contact-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
}

.privacy-content {
    padding: 34px;
    text-align: left;
}

.privacy-content .site-rich-text h2 {
    color: #101828;
    font-size: 1.35rem;
    font-weight: 800;
    margin: 30px 0 12px;
    text-align: left;
}

.privacy-content .site-rich-text h2:first-child {
    margin-top: 0;
}

.privacy-content .site-rich-text p,
.privacy-content .site-rich-text li {
    color: #667085;
    line-height: 1.75;
    text-align: left;
}

.privacy-contact-card {
    background: #fffaf0;
    border-color: #f9c123;
    margin-top: 28px;
    padding: 22px;
}

.privacy-contact-card h2 {
    font-size: 1.25rem;
    margin: 0 0 10px;
}

.privacy-contact-card a,
.privacy-contact-card strong,
.privacy-contact-card small {
    display: block;
}

.privacy-contact-card a {
    color: #0f766e;
    font-weight: 700;
    margin-top: 8px;
}

.privacy-contact-card small {
    color: #667085;
    margin-top: 12px;
}

.privacy-request-card {
    padding: 24px;
    position: sticky;
    top: 92px;
}

.privacy-request-card h2 {
    font-size: 1.45rem;
    margin: 0 0 8px;
}

.privacy-request-card > p {
    color: #667085;
    margin-bottom: 20px;
}

.privacy-consent-check {
    align-items: flex-start;
    color: #475569;
    display: flex;
    gap: 10px;
    line-height: 1.45;
    margin: 16px 0;
}

.privacy-consent-check input {
    accent-color: #f9c123;
    appearance: none;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    cursor: pointer;
    flex: 0 0 18px;
    height: 18px;
    margin: 2px 0 0;
    min-height: 18px;
    min-width: 18px;
    padding: 0;
    position: relative;
    width: 18px;
}

.privacy-consent-check input:checked {
    background: #f9c123;
    border-color: #f9c123;
}

.privacy-consent-check input:checked::after {
    border: solid #111827;
    border-width: 0 2px 2px 0;
    content: "";
    height: 9px;
    left: 6px;
    position: absolute;
    top: 2px;
    transform: rotate(45deg);
    width: 4px;
}

.privacy-consent-check input:focus-visible {
    box-shadow: 0 0 0 3px rgba(249, 193, 35, 0.22);
    outline: none;
}

.privacy-consent-check span {
    flex: 1;
    min-width: 0;
}

.privacy-form-feedback {
    font-size: 0.92rem;
    margin-top: 12px;
}

.privacy-form-feedback[data-type="success"] {
    color: #047857;
}

.privacy-form-feedback[data-type="error"] {
    color: #dc2626;
}

@media (max-width: 900px) {
    .privacy-section {
        padding: 44px 0;
    }

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

    .privacy-request-card {
        position: static;
    }
}
