.faq-container {
    display: flex;
    gap: 30px;
    margin: 0 auto;
}
.faq-column {
    flex: 1;
    min-width: 0; /* Megakadályozza a flex-item túlcsordulását */
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #faf6f3;
    border-radius: 4px;
    background: #fff;
}

.faq-question {
    padding: 15px 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-item.active .faq-question {
    padding: 15px 20px;
    background-color: #1f69b2;
}

.faq-item.active .faq-question h3 {
    color: #ffffff;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: white;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question h3 {
    margin: 0;
    flex: 1;
    padding-right: 15px;
    color: #242424;
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
}

.faq-answer p {
    color: #3B3B3B;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0px;
    margin-bottom: 0px;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
    opacity: 1;
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
    }
    
    .faq-column {
        width: 100%;
    }
}