/* Scope everything to the wrapper to prevent main.css leaks */
#policy-page-wrapper {
    all: initial; /* Reset inherited styles from main.css */
    display: block;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f4f7f6;
    padding: 60px 20px;
}

#policy-page-wrapper .policy-container {
    max-width: 1200px;
    margin: 60px auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    color: #333; /* Ensuring text color is reset */
}

#policy-page-wrapper h1 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
    display: block;
}

#policy-page-wrapper h2 {
    font-size: 1.3rem;
    color: #2980b9;
    margin-top: 30px;
    margin-bottom: 10px;
    display: block;
}

#policy-page-wrapper p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    display: block;
}

#policy-page-wrapper strong {
    color: #2c3e50;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #policy-page-wrapper .policy-container {
        padding: 25px;
    }
    #policy-page-wrapper h1 {
        font-size: 1.8rem;
    }
}