/* Privacy Policy Page Styles - Matching Other Pages */
.privacy-policy-page {
    /* Inherit theme styles for consistency */
}

.privacy-policy-page .entry-content {
    /* Ensure proper spacing and typography */
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.privacy-policy-page .entry-content h2 {
    color: #2c3e50;
    font-size: 28px;
    margin: 40px 0 30px 0;
    border-bottom: 3px solid #007cba;
    padding-bottom: 15px;
    font-weight: 600;
}

.privacy-policy-page .entry-content p {
    margin-bottom: 25px;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.privacy-policy-page .entry-content ol {
    padding-left: 30px;
    margin: 30px 0;
}

.privacy-policy-page .entry-content ol li {
    margin-bottom: 20px;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.privacy-policy-page .entry-content ol li::marker {
    color: #007cba;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-policy-page .entry-content {
        padding: 20px 15px;
    }
    
    .privacy-policy-page .entry-content h2 {
        font-size: 24px;
    }
    
    .privacy-policy-page .entry-content p,
    .privacy-policy-page .entry-content ol li {
        font-size: 16px;
    }
}