.privacy-section {
    background-color: #ffffff;
    padding: 60px 0;
    font-family: 'Manrope', sans-serif;
    color: #282828;
}

.privacy-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.privacy-header {
    border-bottom: 2px solid #f5f6f8;
    padding-bottom: 24px;
    margin-bottom: 36px;
}

.privacy-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    color: #1e1e1e;
    margin: 0;
    line-height: 1.2;
}

.last-updated {
    font-size: 14px;
    color: #888888;
    font-style: italic;
    margin-top: 8px;
}

.privacy-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #164D92;
    margin-top: 40px;
    margin-bottom: 16px;
    font-family: 'Manrope', sans-serif;
}

.privacy-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e1e1e;
    margin-top: 28px;
    margin-bottom: 12px;
    font-family: 'Manrope', sans-serif;
}

.privacy-content p {
    font-size: 16px;
    line-height: 1.75;
    color: #555555;
    margin-bottom: 20px;
}

/* Bulleted List (UL) with dots */
.privacy-content ul {
    list-style-type: disc !important;
    padding-left: 28px;
    margin-bottom: 24px;
}

.privacy-content ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 10px;
}

/* Numbered List (OL) with numbers */
.privacy-content ol {
    list-style-type: decimal !important;
    padding-left: 28px;
    margin-bottom: 24px;
}

.privacy-content ol li {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .privacy-section {
        padding: 40px 0;
    }

    .privacy-header {
        margin-bottom: 24px;
        padding-bottom: 16px;
    }

    .privacy-content h2 {
        font-size: 20px;
        margin-top: 28px;
    }

    .privacy-content h3 {
        font-size: 16px;
        margin-top: 20px;
    }

    .privacy-content p,
    .privacy-content ul li,
    .privacy-content ol li {
        font-size: 14px;
        line-height: 1.65;
    }
}