.privacy-page {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    background: #f5f7fc;
    color: #1e293b;
    padding-top: 100px;
}

.privacy-page h1,
.privacy-page h2,
.privacy-page h3 {
    color: #0f3b5f;
}

.privacy-page .doc-block {
    background: white;
    border-radius: 24px;
    padding: 25px 35px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.privacy-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.privacy-page th,
.privacy-page td {
    border: 1px solid #cbd5e1;
    padding: 10px;
    vertical-align: top;
    text-align: left;
}

.privacy-page th {
    background: #eef2ff;
}

/* Стили для footer внутри privacy-page (если он там есть) */
.privacy-page footer {
    margin-top: 50px;
    text-align: center;
    font-size: 0.85rem;
    color: #5b6e8c;
    border-top: 1px solid #cbd5e1;
    padding-top: 20px;
}

.privacy-page a {
    color: #1e6f9f;
    text-decoration: none;
}

.privacy-page a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .privacy-page {
        padding: 12px;
    }
    .privacy-page .doc-block {
        padding: 16px;
    }
}