body {
    margin: 20px;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: #222222;
    color: #e0e0e0;
    line-height: 1.6;
    padding-top: 70px;
    padding-bottom: 80px; /* Add space for fixed footer */
}

/* New: Header to create spacing for content */
.header {
    width: 100%;
    height: 70px;
    /* Adjust height as needed */
    display: flex;
    align-items: center;
    padding-left: 15px;
    background: #222222;
    /* Match background */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding-top: 60px;
    /* Adjust based on the height of your header */
    margin-top: -60px;
    /* Offset the padding to prevent the content from being pushed down */
}

p:has(+ #footer-container) {
    margin-bottom: 100px;
    /* Add some space at the bottom to prevent overlap with the footer */
}

/* Ensures content starts below the header */
.container {
    max-width: 800px;
    margin: 100px auto 0;
    /* Pushes content below the fixed header */
    padding: 20px;
    background: #2a2a2a;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.logo-fixed {
    position: fixed;
    top: 15px;
    left: 15px;
    width: 50px;
    /* Adjust size as needed */
    height: auto;
    z-index: 1000;
    /* Ensures it's always above other elements */
}

h1 {
    font-size: 2.5em;
    color: #56c7d9;
}

p {
    font-size: 1.1em;
    color: #e0e0e0;
    text-align: left;
}

a {
    color: #6bbcff;
    text-decoration: none;
}

a:hover {
    color: #4a9dd6;
    text-decoration: underline;
}

.footer-links {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222222; /* Solid background matching page */
    text-align: center;
    font-size: 14px;
    color: grey;
    white-space: nowrap;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.footer-links a {
    color: grey;
    text-decoration: none;
    margin: 0 10px;
}

}