.faq {
    padding: 80px 0;
    background: #f8faff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.workflow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    color: #2563eb;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(148, 163, 184, 0.1);
}

.workflow-title {
    font-size: 2.5rem;
    color: #1e293b;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.workflow-description {
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.5;
    margin: 0 auto;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
                0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.15);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
    text-align: left;
}

.accordion-header i {
    color: #64748b;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.accordion-content p {
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0 1rem;
    }

    .accordion-header {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .accordion-content {
        padding: 0 1.25rem;
    }
} 