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

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

.faq-question {
    padding: 15px 20px;
    background-color: #a6e4dc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border-radius: 15px;
}
.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: 15px;
    font-weight: 300;
    line-height: 26px;
    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%;
    }
}