.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    padding: 12px 18px;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    padding: 0 18px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    line-height: 1.6;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 18px;
}

.faq-item.to-show {
    display: none;
    height:auto;
    max-height: unset !important;
}

.faq-item.visible {
    display: block;
}

#faq-btn {
    display: block;
    float: right;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    color: #333;
    text-decoration: underline;
    border: none;
    background-color: transparent;
}