/* Simple Legal Pages */
.simple-page {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.simple-page h1 {
    font-size: 2rem;
    font-weight: 300;
    color: #111827;
    letter-spacing: -0.025em;
}

.terms-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem 0;
    color: #374151;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.terms-content p {
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #4b5563;
}

.terms-content a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.terms-content a:hover {
    text-decoration: underline;
}

.terms-content .alert {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border: none;
}

.terms-content .alert-warning {
    background: #fef3cd;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.terms-content .alert-info {
    background: #dbeafe;
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .simple-page {
        padding: 1.5rem;
        margin: 0 0.5rem;
        border-radius: 12px;
    }
    
    .simple-page h1 {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .terms-content h3 {
        font-size: 1.1rem;
        margin: 2rem 0 0.75rem 0;
    }
    
    .terms-content p {
        font-size: 0.95rem;
    }
}