/* terms.css — page-specific rules (shared rules in common.css) */

:root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

body {
            background-color: #f8f9fa;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

/* navbar / btn chrome now provided by common.css (shared across all pages) */

.hero-section {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
            color: #1e293b;
            text-align: center;
            padding: 80px 0 60px;
            margin-bottom: 40px;
        }

.hero-section p {
            color: #64748b;
            opacity: 1;
        }

/* Content + table-of-contents links use the site accent (consistent across pages) */
.toc a,
        .content-card a {
            color: var(--primary-color);
            text-decoration: none;
        }

.toc a:hover,
        .content-card a:hover {
            text-decoration: underline;
        }

.content-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            padding: 40px;
            margin-bottom: 30px;
        }

.warning-box {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            border-radius: 0 8px 8px 0;
            padding: 20px;
            margin: 20px 0;
        }

.warning-box p {
            margin-bottom: 0;
            color: #856404;
        }
