:root {
    --black: #000000;
    --white: #FFFFFF;
    --cyan: #2CD5C4;
    --green: #006341;
    --yellow: #FFC72C;
    --pink: #FFA3B5;
    --gray: #808080;
    --dark-gray: #333333;
    --light-gray: #F5F5F5;
    --beige: #E2E2B5;
    --base: #0F172A;
    --sage-green: #b8bea0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--sage-green);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    overflow-y: scroll;
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
    align-items: center;
}

body::-webkit-scrollbar {
    width: 0;
    height: 0;

}

.courier-prime-regular {
    font-family: "Courier Prime", monospace;
    font-weight: 400;
    font-style: normal;
}

.courier-prime-bold {
    font-family: "Courier Prime", monospace;
    font-weight: 700;
    font-style: normal;
}

.courier-prime-regular-italic {
    font-family: "Courier Prime", monospace;
    font-weight: 400;
    font-style: italic;
}

.courier-prime-bold-italic {
    font-family: "Courier Prime", monospace;
    font-weight: 700;
    font-style: italic;
}

.allison-regular {
    font-family: "Allison", cursive;
    font-weight: 400;
    font-style: normal;
}

.term-links {
    color: var(--black);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.term-links:hover {
    color: var(--green);
}

footer {
    background-color: var(--sage-green);
    /* Or use var(--white) */
    padding: 40px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    font-family: 'Courier Prime', monospace;
}

footer p {
    color: #333;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.term-links {
    text-decoration: none;
    color: #666;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    position: relative;
}

/* Hover effect with a small underline animation */
.term-links::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--green, #2d5a27);
    transition: width 0.3s ease;
}

.term-links:hover {
    color: var(--green, #2d5a27);
}

.term-links:hover::after {
    width: 100%;
}

/* Responsive adjustment for mobile */
@media (max-width: 600px) {
    footer {
        padding: 30px 20px;
        text-align: center;
    }

    .footer-links {
        gap: 15px;
        flex-direction: column;
        /* Stack links on very small screens */
    }
}