.privacy-policy-layout{
    display: flex;
    flex-direction: column;
    min-height: 100vh;  
    padding-bottom: 200px;
}
.privacy-policy-layout.footer-hidden {
    padding-bottom: 0;
}
.privacy-policy-container {
    margin: 50px 120px;
    font-family: 'Barlow', sans-serif;
    position: relative;
    z-index: 1;
}

.privacy-policy-container::before {
    content: "";
    position: absolute;
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
}

.privacy-policy-title {
    font-family: 'Barlow Condensed', 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.32;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    color: #003EAB;
}

.privacy-policy-content {
    font-size: 14px;
    line-height: 1.8;
    color: #222;
}

.privacy-policy-content ol {
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}

.privacy-policy-content ol>li {
    text-transform: uppercase;
    counter-increment: item;
    margin: 2em 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #003EAB;
}

.privacy-policy-content ul>li {
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #1F2937;
    text-transform: none;
}

.privacy-policy-content ol>li::before {
    content: counter(item) "/";
    margin-right: 0.5em;
    color: #003EAB;
    font-weight: bold;
}

.privacy-policy-content ul {
    list-style-type: disc;
    padding-left: 0;
    font-weight: normal;
}

.privacy-policy-content ul li {
    margin-bottom: 0.5em;
}

.privacy-policy-content li>ul:first-child {
    margin-top: 0.5em;
}

.privacy-policy-content li::marker {
    content: "";
}

.privacy-policy-content ul>li::before {
    content: "-";
    color: #003EAB;
    font-size: 1em;
    line-height: 1.5;
    margin-right: 15px;
}

/* Mobile UI */
@media (max-width: 576px) {
    .privacy-policy-container {
        margin: 20px 25px;
    }

    .privacy-policy-title {
        font-size: 28px;
    }

    .privacy-policy-content ol>li {
        font-size: 18px;
    }

    .privacy-policy-content ul>li {
        font-size: 16px;
    }

    .privacy-policy-container::before {
        top: 180px;
        left: 0;
        width: 100%;
        height: 46%;
    }
}

/* Tablet UI */
@media (min-width: 768px) {
    .privacy-policy-container::before {
        top: 60px;
        left: 158px;
        width: 361px;
        height: 98%;
    }
}

/* Desktop UI */
@media (min-width: 992px) {
    .privacy-policy-container::before {
        top: 17px;
        left: 239px;
        width: 361px;
        height: 98%;
    }
}