
.custom-faq-container {
    max-width: 100%;
    margin: 0 auto;
    font-family: inherit;
}

.faq-box {
    border-bottom: 1px solid #e5e5e5;
}

.faq-details {
    width: 100%;
}

.faq-details summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 600;
    list-style: none;
    outline: none;
}

.faq-details summary::-webkit-details-marker {
    display: none;
}

.faq-details summary span {
    padding-right: 20px;
    line-height: 1.4;
}

.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-details[open] .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 20px 0;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #444444;
}

.faq-answer ul {
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 6px;
}
