/**
 * Terms & Conditions Page Styling
 * Location: /var/www/saafee/public/css/terms.css
 */

.terms-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 16px;
    flex: 1;
    width: 100%;
}

.terms-header {
    text-align: center;
    margin-bottom: 32px;
}

.terms-header h1 {
    font-size: 1.8em;
    margin-bottom: 8px;
    color: #333;
}

.terms-last-updated {
    color: #7A7A7A;
    font-size: 0.9em;
}

.terms-section {
    margin-bottom: 28px;
}

.terms-section h2 {
    font-size: 1.15em;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #E0E0E0;
}

.terms-section p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .terms-container {
        margin: 40px auto;
        padding: 20px;
    }

    .terms-header h1 {
        font-size: 2.2em;
    }

    .terms-section h2 {
        font-size: 1.25em;
    }

    .terms-section p {
        font-size: 1em;
    }
}
