/* terms-and-conditions.css — page-specific styles */

.content-section {
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 1.5rem;
        }

        .content-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-50);
        }

        .content-section h3 {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 1.5rem 0 0.75rem;
        }

        .content-section p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .content-section ul, .content-section ol {
            margin: 1rem 0 1rem 1.5rem;
            color: var(--text-secondary);
        }

        .content-section li {
            margin-bottom: 0.5rem;
        }

        .content-section strong {
            color: var(--text-primary);
        }

        .highlight-box {
            background: var(--primary-50);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 1.5rem 0;
        }

        .warning-box {
            background: #FEF3C7;
            border-left-color: #F59E0B;
        }
