/* FAQ blokk design – UX/UI fókusz */
.faq-accordion {
    max-width: 900px;
    margin: 2rem auto;
    border-top: 1px solid #e0e0e0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #f8f9fa;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #eef2f5;
}

.faq-icon {
    font-size: 1.3rem;
    font-weight: bold;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1rem 1rem 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}