/* Terms of Service Page Specific Styles */

/* Terms Container */
.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

/* Terms Title */
.terms-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 15px;
}

/* Last Updated */
.terms-updated {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 50px;
}

/* Terms Content */
.terms-content {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.terms-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.terms-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 15px;
}

.terms-content h2:first-of-type {
    margin-top: 0;
}

.terms-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.terms-content ul {
    margin: 15px 0 20px 20px;
    padding-left: 20px;
}

.terms-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 10px;
    list-style-type: disc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-container {
        padding: 30px 15px 60px;
    }

    .terms-title {
        font-size: 32px;
    }

    .terms-updated {
        font-size: 14px;
    }

    .terms-content {
        padding: 28px 22px;
    }

    .terms-content h2 {
        font-size: 19px;
        margin-top: 28px;
    }

    .terms-content p,
    .terms-content ul li {
        font-size: 14px;
    }

    .terms-content ul {
        margin-left: 10px;
        padding-left: 15px;
    }
}

