.faq-container {
    margin: 20px 0;
    width: 650px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    overflow: hidden;
}

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

.faq-question:hover .faq-title {

    font-weight: 500;;
    color: #000000;
}

.faq-title {
    text-align: left;
    font-family: "proxima-nova", Sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.2px;
    color: #212529;
}

.faq-arrow {
    font-size: 18px;
    font-weight: bold;
    color: #666;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.faq-question.active .faq-arrow {
    transform: rotate(90deg);
}

.faq-question.active .faq-title {
    text-align: left;
    font-family: "proxima-nova", Sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -0.2px;
    color: #212529;
}


.faq-answer {
    display: none;
    background-color: #fff;
    border-top: 0px solid #eee;
}

.faq-answer.active {
    display: block;
}

.faq-content {
    padding: 15px 20px;
    font-family: "proxima-nova", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.2px;
    color: #212529;
}

.faq-content p {
    margin-bottom: 15px;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

/* Mobil reszponzivitás */
@media (max-width: 768px) {
    .faq-question {
        padding: 12px 15px;
    }
    
    .faq-title {
        font-size: 14px;
    }
    
    .faq-content {
        padding: 15px;
        font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    }

    .faq-container {
    width: 100%;
}
}