/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: #ffffff;
}

.faq-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq h2 {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    text-align: center;
    color: #4b5563;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 768px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: #f9fafb;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.faq-question {
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-weight: 600;
    color: #111827;
    flex: 1;
}

.faq-question svg {
    color: #6b7280;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: #2563eb;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer {
    padding: 0 1.25rem;
    color: #4b5563;
}

.faq-item.active .faq-answer {
    padding: 1.25rem;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ol {
    list-style-type: decimal;
    margin-left: 1.25rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}