/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ ПОЛИТИКИ КОНФИДЕНЦИАЛЬНОСТИ (УПРОЩЁННАЯ) ===== */

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0 60px;
    background: #ffffff;
}

.privacy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1e2a3a;
    font-family: 'Rubik', sans-serif;
}

.privacy-content .last-updated {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 40px;
    border-bottom: 1px solid #eef2f5;
    padding-bottom: 20px;
}

.privacy-content h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1e2a3a;
    font-family: 'Rubik', sans-serif;
}

.privacy-content h3 {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1e2a3a;
    font-family: 'Rubik', sans-serif;
}

.privacy-content p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #334155;
    font-size: 1rem;
}

.privacy-content ul {
    margin: 16px 0 24px 20px;
    list-style: disc;
}

.privacy-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #334155;
}

.privacy-content .highlight-box {
    background: #f8fafc;
    border-left: 4px solid #20bf6b;
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 8px;
}

.privacy-content .highlight-box p {
    margin-bottom: 0;
}

.privacy-content a {
    color: #20bf6b;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.privacy-content .contact-block {
    background: #f8fafc;
    padding: 24px 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.privacy-content .contact-block p {
    margin-bottom: 8px;
}

.privacy-content .contact-block a {
    color: #20bf6b;
    font-weight: 500;
}
/* Кнопка "Назад" */
        .back-button-wrapper {
            margin-bottom: 25px;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: none;
            color: #20bf6b;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 40px;
            transition: all 0.2s ease;
        }

        .back-button svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
            transition: transform 0.2s ease;
        }

        .back-button:hover {
            background: rgba(32, 191, 107, 0.1);
            color: #159b56;
        }

        .back-button:hover svg {
            transform: translateX(-3px);
        }

@media (max-width: 768px) {
    .privacy-content {
        padding: 20px 15px 40px;
    }
    .privacy-content h1 {
        font-size: 1.8rem;
    }
    .privacy-content h2 {
        font-size: 1.3rem;
    }
}