.policy-title {
    font-family: var(--ztc-family-font1) !important;
    font-size: 80px !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    display: block;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.sonar-title .policy-title {
    font-size: 65px !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.vl-legal-links ul {
    display: flex;
    justify-content: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.vl-legal-links li {
    position: relative;
}

.vl-legal-links li:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -14px;
    color: rgba(255, 255, 255, 0.3);
}

.vl-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vl-legal-links a:hover {
    color: #fff;
    text-decoration: underline;
}
  
/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .policy-title {
        font-size: 40px !important;
        line-height: 1.3 !important;
    }

    .sonar-title .policy-title {
        font-size: 36px !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 576px) {
    .policy-title {
        font-size: 32px !important;
        line-height: 1.3 !important;
    }

    .sonar-title .policy-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
}

.policy-text-content,
.personal-data-text-content {
    text-align: justify !important;
}

.policy-text-content p,
.personal-data-text-content p {
    margin-bottom: 5px !important;
    margin-top: 0 !important;
    text-align: justify !important;
    text-indent: 0 !important;
    text-indent: 2em !important;
}

.policy-text-content p:first-child,
.personal-data-text-content p:first-child {
    margin-top: 0 !important;
}

.policy-text-content p:last-child,
.personal-data-text-content p:last-child {
    margin-bottom: 0 !important;
}

/* Исправление фона на мобильных устройствах и планшетах */
/* Для планшетов (iPad 1024x1366 и подобные) - отключаем fixed и делаем фон повторяющимся */
@media (min-width: 769px) and (max-width: 1366px) {
    .personal-data-section-area,
    .privacy-policy-section-area {
        background-attachment: scroll !important;
        background-size: 100% auto !important;
        background-position: center top !important;
        background-repeat: repeat-y !important;
        min-height: 100vh;
    }
}

/* Для планшетов среднего размера (iPad портрет) */
@media (min-width: 768px) and (max-width: 1024px) {
    .personal-data-section-area,
    .privacy-policy-section-area {
        background-attachment: scroll !important;
        background-size: 100% auto !important;
        background-position: center top !important;
        background-repeat: repeat-y !important;
    }
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .personal-data-section-area,
    .privacy-policy-section-area {
        background-attachment: scroll !important;
        background-size: auto !important;
        background-position: center top !important;
        background-repeat: repeat !important;
    }
}

@media (max-width: 576px) {
    .personal-data-section-area,
    .privacy-policy-section-area {
        background-attachment: scroll !important;
        background-size: auto !important;
        background-position: center top !important;
        background-repeat: repeat !important;
    }
}

