.faq-toggle-container {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
 
.faq-question:hover {
    background-color: #f1f1f1;
}

.faq-question h3 {
    margin: 0;
    font-size: 1em;
    color: #333;
}

.faq-question .toggle-icon {
    position: relative; 
}

.faq-question .toggle-icon img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
} 




.faq-question .inactive-icon {
    opacity: 1;
}

.faq-question .active-icon {
    opacity: 0;
}

.faq-item.active .faq-question .inactive-icon {
    opacity: 0;
}

.faq-item.active .faq-question .active-icon {
    opacity: 1;
}


.faq-answer {
    padding: 0 20px; 
    background-color: #ffffff;
    line-height: 1.6;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
}
