.content-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    line-height: 1.6;
    color: #333;
    display: block;
    /* Force block display to stack children vertically */
}

h1,
h2 {
    color: #2c3e50;
    display: block;
    /* Ensure headers take full width */
}

h1 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

h2 {
    margin-top: 30px;
    font-size: 1.5em;
}

p,
ul {
    margin-bottom: 15px;
    display: block;
    /* Ensure text blocks stack */
}

ul {
    padding-left: 20px;
}

.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    display: block;
}