/* Specific styles for policy pages to reduce excessive spacing */

/* Reduce paragraph margins to prevent huge gaps */
.container #content p {
    margin-top: 0;
    margin-bottom: 0;
    /* API provides <p><br></p> for empty spaces */
}

/* Proper styling for lists (bullet points) */
.container #content ul,
.container #content ol {
    margin-top: 0;
    margin-bottom: 1em;
    padding-left: 20px;
}

.container #content li {
    margin-top: 0;
    margin-bottom: 0.4em;
}

/* Ensure headers within content have appropriate spacing */
.container #content h2,
.container #content h3,
.container #content h4 {
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

/* Explicit handling for links if they are stacked */
.container #content a {
    margin-bottom: 0.2em;
}