/* --- HELP PAGE STYLES --- */

.help-page {
    padding: 40px 0;
    background: #f8fafc;
    min-height: calc(100vh - 200px);
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.page-header p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Help Grid */
.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Full width layout for dedicated pages */
.help-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.help-card.full-width {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.help-card.full-width .help-icon {
    margin: 0 auto 20px;
}

.help-card.full-width .help-content.formatted {
    text-align: left;
    line-height: 1.8;
}

.help-card.full-width .help-content.formatted br {
    margin-bottom: 8px;
}

.help-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.help-card:hover {
    transform: translateY(-5px);
}

.help-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.help-card h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.help-content {
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
    text-align: left;
}

/* FAQ Section */
.faq-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-section h2 {
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h4 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.help-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.help-cta p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 20px;
}

.help-cta .btn-white {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.help-cta .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .help-card.full-width {
        padding: 20px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .faq-section {
        padding: 30px 20px;
    }
    
    .help-cta {
        padding: 30px 20px;
    }
}












