:root {
    /* The Canvas - Keep it bright */
    --bg-color: #f5f5f5;
    /* White */

    /* The Text & Accents - For grounding and readability */
    --text-primary: #1F0F0D;
    /* Black (Deep Brown/Red tint) */
    --text-secondary: #445855;
    /* Green */
    --accent-blue: #31444B;
    /* Blue */
    --accent-soft: #6C8381;
    /* Soft green */

    /* Functional colors */
    --btn-bg: var(--accent-blue);
    --btn-text: var(--bg-color);
}

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

/* MH */
body {
    background-color: #f5f5f5;
    color: #1F0F0D;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.grid-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    width: 100%;
    background-color: #8eaba9;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

header ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

header a {
    text-decoration: none;
    color: #31444B;
    font-weight: bold;
}

main {
    flex: 1;
    padding: 20px 200px;
    text-align: center;
}

footer {
    width: 100%;
    background-color: #8eaba9;
    justify-content: center;
    padding: 50px 200px;
}


/* Mobile Styles (For screens smaller than 768px) */
@media (max-width: 768px) {
    main {
        padding: 20px;
    }

    footer {
        padding: 40px 20px;
    }

    header ul {
        gap: 20px;
    }

    .logo {
        width: 60px;
        height: 60px;
    }
}