/* Help Center Shared Styles */

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #f8fafc;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.help-header {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.2);
}

.help-header h1 {
    font-size: 2.5em;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.help-header p {
    font-size: 1.2em;
    opacity: 0.9;
    margin: 0;
}

.breadcrumb {
    margin-bottom: 20px;
    padding: 10px 0;
    font-size: 0.9em;
    color: #64748b;
}

.breadcrumb a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: #7c3aed;
}

.help-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    line-height: 1.6;
}

.help-content h2 {
    color: #2d3748;
    font-size: 1.8em;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.help-content h3 {
    color: #4a5568;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
}

.help-content h4 {
    color: #4a5568;
    font-size: 1.2em;
    margin: 20px 0 10px 0;
}

.help-content p {
    color: #4a5568;
    margin: 15px 0;
}

.help-content ul {
    color: #4a5568;
    margin: 15px 0;
    padding-left: 20px;
}

.help-content li {
    margin: 8px 0;
}

.help-content strong {
    color: #2d3748;
    font-weight: 600;
}

.help-content a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
}

.help-content a:hover {
    color: #7c3aed;
    text-decoration: underline;
}

.step {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-content {
    flex: 1;
}

.help-footer {
    background: #2d3748;
    color: white;
    padding: 30px 20px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-text {
    color: #9ca3af;
    font-size: 0.9em;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .help-container {
        padding: 10px;
    }
    
    .help-content {
        padding: 20px;
    }
    
    .help-header h1 {
        font-size: 2em;
    }
    
    .help-header p {
        font-size: 1em;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links a {
        display: block;
        margin: 5px 0;
    }
}

/* Print Styles */
@media print {
    .help-container {
        background: white;
        padding: 0;
    }
    
    .help-header {
        background: #4f46e5 !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
    
    .breadcrumb,
    .help-footer {
        display: none;
    }
    
    .help-content {
        box-shadow: none;
        border: none;
        padding: 20px 0;
    }
}