.dsm-faq-container {
    border-top: 1px solid #e8e4dd;
}

.dsm-faq-title {
    margin-bottom: 20px;
    /* font styles handled by Elementor controls */
}

.dsm-faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e8e4dd;
    transition: background-color 0.2s ease;
    /* padding and font styles handled by Elementor controls */
}

.dsm-faq-arr {
    transition: transform 0.2s ease;
    font-style: normal;
    flex-shrink: 0;
    /* color handled by Elementor controls */
}

.dsm-faq-a {
    display: none; /* Hidden by default, JS handles toggle */
    padding-top: 10px;
    /* padding-bottom and font styles handled by Elementor controls */
}

/* Open State classes added by JS */
.dsm-faq-item.active .dsm-faq-arr {
    transform: rotate(90deg);
}

.dsm-faq-item.active .dsm-faq-a {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
