/* Terms of Service Page Styles */
.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
}

.terms-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
}

.terms-container h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0d6efd; /* Bootstrap primary color */
}

.terms-container p,
.terms-container li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.terms-container ul {
    list-style: disc;
    margin-left: 20px;
}

.terms-container a {
    color: #0d6efd;
    text-decoration: none;
}

.terms-container a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .terms-container {
        padding: 30px 15px;
    }

    .terms-container h1 {
        font-size: 2rem;
    }

    .terms-container h2 {
        font-size: 1.4rem;
    }
}
