/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 1rem 0;
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #2575fc;
}

/* Main Content */
main {
    padding: 2rem 1.5rem;
    background-color: #ffffff;
}

.tos-content {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
}

.tos-content h1 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.tos-content h2 {
    font-size: 1.4rem;
    color: #444;
    margin-top: 1.2rem;
}

.tos-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.tos-content ul {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    padding-left: 20px;
}

.tos-content ul li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #222;
    color: #ccc;
    font-size: 0.9rem;
}

footer .footer-links {
    margin-top: 1rem;
}

footer .footer-links a {
    color: #2575fc;
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

footer .footer-links a:hover {
    color: #0056b3;
}