/* Most styles will be inherited from docs.css */
.doc-content-section {
    margin-bottom: 2rem;
}

.doc-content-section h2 {
    color: var(--text);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.doc-content-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.doc-content-section li {
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-support {
    background: linear-gradient(135deg, #4169FF 0%, #9F53FF 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin: 4rem 0;
}

.support-content {
    max-width: 500px;
    margin: 0 auto;
}

.support-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.support-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary);
    padding: 0.875rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
} 