/*  terms-of-service.css
    Purpose        Stand-alone styles for the “Terms of Service” static page:
                     • content container (800 px max-width, typographic spacing)
                     • in-page headings & paragraphs that inherit current theme
                     • hyperlink colour that matches other body links
                     • persistent footer strip

    Load-order     After the global colour-mode/theme stylesheet, e.g.:

       <link rel="stylesheet" href="css/terms-of-service.css">

 
    Last updated   31 Jul 2025
*/


/* Terms of Service Section */
.terms-of-service-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    text-align: left;
    line-height: 1.6;
}

h1 {
    margin-top: 50px;
}

.terms-of-service-container h1, .terms-of-service-container h2 {
    color: inherit;
}

.terms-of-service-container a {
    color: #4ea1d3; /* Same light blue used for other body links */
    text-decoration: none;
}


.terms-of-service-container p {
    margin-bottom: 20px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 14px;
}
