body.privacy-page {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #f2f2f2;
    color: #2f312e;
    margin: 0;
    padding: 40px 20px;
    line-height: 1.6;
}

.privacy-container {
    max-width: 860px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #D9D9D9;
    padding: 40px 48px;
}

.privacy-header {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.privacy-icon {
    width: 52px;
    height: 52px;
    background: #f8fafc;
    color: #2f312eab;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.privacy-title h1 {
    font-size: 1.65rem;
    font-weight: 700;
    color: #2f312e;
    margin: 0 0 4px 0;
}

.privacy-title p {
    font-size: 0.9rem;
    color: #2f312e;
    margin: 0;
}

.privacy-section {
    margin-bottom: 28px;
}

.privacy-section h2 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2f312e;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy-section h2 .material-symbols-rounded {
    color: #2f312eab;
    font-size: 22px;
}

.privacy-section p,
.privacy-section ul {
    font-size: 0.93rem;
    color: #4A4B47;
    margin: 0 0 12px 0;
}

.privacy-section ul {
    padding-left: 24px;
}

.privacy-section li {
    margin-bottom: 6px;
}

.highlight-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 16px 0;
    font-size: 0.9rem;
    color: #2f312eab;
}

.actions-bar {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #D9D9D9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2f312e;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.15s ease;
}

.btn-back:hover {
    background: #4A4B47;
}

.legal-stamp {
    font-size: 0.8rem;
    color: #6F726A;
}