/* Reduce font size of h2 headings (Notes, Example Request, etc.) by a third */
.md-content h2 {
    font-size: 1.2em !important; /* Reduced from default ~1.8em by approximately 1/3 */
}

/* Also reduce h3 if needed */
.md-content h3 {
    font-size: 1.05em !important;
}

/* Reduce line spacing in bullet lists to 1.15 */
.md-content ul li,
.md-content ol li {
    line-height: 1.15 !important;
}
