/* Minimalist styles for Terms of Service page */

.legal-page {
    padding: 20px 20px; /* Add some padding to top/bottom and sides */
    line-height: 1.6; /* Improve readability */
    color: #333; /* Standard dark text color */
}

.legal-page h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
    color: #000; /* Black for main title */
}

.legal-page h2 {
    font-size: 1.5em;
    margin-bottom: 1em;
    color: #555; /* Slightly lighter for subtitle */
}

.legal-page h3 {
    font-size: 1.2em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #333; /* Same as body text */
}

.legal-page p {
    margin-bottom: 1em;
}

.legal-page ul {
    margin-left: 2em;
    margin-bottom: 1em;
}

.legal-page li {
    margin-bottom: 0.5em;
}

.legal-page hr {
    border: none;
    height: 1px;
    background-color: #ccc; /* Light grey line */
    margin: 2em 0;
}