/* General Styles for Terms of Service Page */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 20px;
    font-size: var(--font-size-base);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Main Section */ 
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--content-bg);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 30px;
    color: var(--text-color);
}

p, ul {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary-text);
}

ul {
    padding-left: 20px;
}

/* Links and Button Styling */
a {
    color: var(--accent-color);
    text-decoration: underline;
}

a:hover {
    color: var(--hover-color);
}

/* Styling for lists */
ul li {
    margin-bottom: 10px;
}

/* Contact Details */
strong {
    font-weight: 600;
    color: var(--text-color);
}

/* Responsive Styles for Terms of Service */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    main {
        padding: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}
