.privacy-content {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    line-height: 1.8;
}

.privacy-content h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    color: var(--dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.privacy-content h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    color: var(--dark);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.privacy-content p {
    color: #666;
    margin-bottom: 1rem;
}

.privacy-content ul {
    list-style-type: none;
    padding-left: 20px;
}

.privacy-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #666;
}

.privacy-content ul li::before {
    content: '\f105'; /* Font Awesome angle right icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--primary);
}

.privacy-content strong {
    color: var(--dark);
}

@media (min-width: 992px) {
    .privacy-content {
        padding: 3rem;
    }
}