/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page layout */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #222;
}

/* Typography */
h1, h2, h3 {
    margin-bottom: 0.6em;
}

p {
    margin-bottom: 1em;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header navigation include */
.navbar {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar a {
    font-weight: bold;
    color: #333;
}

/* Footer include */
.site-footer {
    border-top: 1px solid #ddd;
    margin-top: 40px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
}

.site-footer a {
    color: #555;
}

.site-footer a:hover {
    text-decoration: underline;
}
