/* terms.css */
body {
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.terms-container {
    background: #fff;
    max-width: 800px;
    padding: 2rem;
    margin: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    color: #2575fc;
    font-size: 2rem;
    margin-bottom: 1rem;
}

h2 {
    color: #555;
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

p {
    margin: 1rem 0;
    text-align: justify;
}

ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

ul li {
    margin: 0.5rem 0;
}

a {
    color: #2575fc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    text-align: center;
    color: #666;
}
