/* .container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
} */
h1, h2 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-top: 30px;
}
h1 {
    font-size: 2em;
}
h2 {
    font-size: 1.5em;
    border-bottom: 1px dashed #95a5a6;
}
p {
    margin-bottom: 15px;
}
ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}
ol {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 15px;
}
code {
    font-family: "Courier New", Courier, monospace;
    background-color: #eee;
    padding: 2px 4px;
    border-radius: 4px;
    color: #c0392b;
}
pre {
    background-color: #2d2d2d;
    color: #f8f8f2;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 20px;
}
pre code {
    background-color: transparent;
    color: inherit;
    padding: 0;
    border-radius: 0;
}