.privacy-policy-title {
    position: relative;
    width: 95%; /* Резина */
    max-width: 1200px;
    height: fit-content;
    margin: 73px auto; /* Центрируем без transform */
    color: #5A062A;
    text-align: center;
    font-family: Novelist, serif;
    font-size: clamp(32px, 5vw, 64px); /* Шрифт плавно уменьшается */
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
}

.privacy-policy-body {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 95%; /* Резина */
    max-width: 1200px;
    height: fit-content;
    margin: 0 auto 100px auto;
    color: #5A062A;
    text-align: justify;
    font-family: Gabriola, serif;
    font-size: clamp(22px, 3vw, 40px); /* Шрифт плавно уменьшается */
    font-weight: 400;
    line-height: 1.2;
}

/* --- МОБИЛЬНАЯ ВЕРСИЯ (ДО 768px) --- */
@media screen and (max-width: 768px) {
    /* Изолируем правки от Header и Footer */
    .background-1-privacy-policy {
        width: 100% !important;
        padding: 0 15px !important; /* Минимальные отступы от краев */
        box-sizing: border-box !important;
    }

    .privacy-policy-title {
        width: 100% !important;
        margin: 40px 0 !important;
        font-size: 32px !important;
        line-height: 1.2 !important;
        left: 0 !important;
        transform: none !important;
    }

    .privacy-policy-body {
        width: 100% !important;
        margin-bottom: 60px !important;
        font-size: 24px !important; /* Удобный размер для Gabriola на телефоне */
        line-height: 1.3 !important;
        left: 0 !important;
        transform: none !important;
    }
}