/**
 * تنسيقات صفحة شروط التسجيل
 */

.terms-container {
    max-width: 720px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.terms-container h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f766e;
    margin-bottom: 0.5rem;
    text-align: center;
}

.terms-updated {
    text-align: center;
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.terms-intro {
    background: #f0fdfa;
    border: 1px solid #99f6e4;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    color: #134e4a;
    line-height: 1.7;
}

.terms-section {
    margin-bottom: 1.75rem;
}

.terms-section h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f766e;
    margin-bottom: 0.6rem;
}

.terms-section ul {
    margin: 0 0 0 1.25rem;
    padding: 0;
    color: #374151;
    line-height: 1.8;
}

.terms-section ul li {
    margin-bottom: 0.4rem;
}

.terms-section ul ul {
    margin-top: 0.35rem;
    margin-bottom: 0.35rem;
}

.terms-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.btn-terms-back {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background: #0f766e;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-terms-back:hover {
    background: #0d9488;
}

@media (max-width: 768px) {
    .terms-container {
        margin: 1rem;
        padding: 1.25rem;
    }

    .terms-container h1 {
        font-size: 1.3rem;
    }

    .terms-section h2 {
        font-size: 1rem;
    }
}
