/* Page: terms */
/* Terms of Service specific styles */

.content {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.content h1 {
    color: #6366f1;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.content h2 {
    color: #6366f1;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.content h3 {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.content p {
    margin-bottom: 1.5rem;
    color: #6b7280;
    line-height: 1.7;
}

.content ul, .content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content li {
    margin-bottom: 0.8rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Highlight boxes */
.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-left: 4px solid #6366f1;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.highlight p {
    margin-bottom: 0;
    font-weight: 500;
    color: #1f2937;
}

/* Warning boxes */
.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.warning p {
    margin-bottom: 0;
    font-weight: 500;
    color: #1f2937;
}

/* Contact info */
.contact-info {
    background: #f9fafb;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e5e7eb;
}

.contact-info h3 {
    color: #6366f1;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Table of Contents */
.toc {
    background: #f9fafb;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e5e7eb;
}

.toc h3 {
    color: #6366f1;
    margin-bottom: 1rem;
}

.toc ul {
    list-style: none;
    padding-left: 0;
}

.toc li {
    margin-bottom: 0.5rem;
}

.toc a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.toc a:hover {
    color: #6366f1;
}

/* Responsive */
@media (max-width: 768px) {
    .content {
        padding: 2rem 1.5rem;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .content h3 {
        font-size: 1.2rem;
    }
}
