.fdifaq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fdifaq-item {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.fdifaq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.fdifaq-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-topbar-bg);
}

/* Dynamic CSS Icons mimicking image_818dca.png */
.fdifaq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fdifaq-icon::before,
.fdifaq-icon::after {
    content: "";
    position: absolute;
    background-color: var(--color-accent);
    transition: transform 0.25s ease-out;
}

/* Horizontal line */
.fdifaq-icon::before {
    width: 100%;
    height: 2px;
}

/* Vertical line for the plus sign */
.fdifaq-icon::after {
    width: 2px;
    height: 100%;
}

/* When the accordion item is active */
.fdifaq-item.is-active .fdifaq-icon::before {
    transform: rotate(45deg);
}

.fdifaq-item.is-active .fdifaq-icon::after {
    transform: rotate(45deg);
}

/* Sliding Panels setup */
.fdifaq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.fdifaq-item.is-active .fdifaq-panel {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
    border-top: 1px solid #edf2f7;
}

.fdifaq-content {
    padding: 24px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
}