/* Base styling */
body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #0D141C;
    color: #e6e6e6;
    max-width: 900px;
    margin: auto;
    padding: 30px 20px;
    line-height: 1.7;
}

/* Headings */
h1 {
    font-size: 2.5em;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.4em;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #ffffff;
    border-bottom: 1px solid #222;
    padding-bottom: 4px;
}

/* Links */
a {
    color: #24BBFF;
    text-decoration: none;
}

    a:hover {
        color: #ffffff;
    }

/* Horizontal rule */
hr {
    border: none;
    border-top: 1px solid #222;
    margin: 30px 0;
}

/* Paragraphs */
p {
    margin-bottom: 15px;
    color: #ccc;
}

/* Lists */
ul {
    list-style: none;
    padding-left: 0;
}

    ul li {
        margin: 6px 0;
    }

/* Header & footer */
header {
    margin-bottom: 30px;
}

footer {
    margin-top: 50px;
    text-align: center;
    font-size: 0.9em;
    color: #666;
}
