.sidma-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidma-faq-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.sidma-faq-item.is-active {
    border-color: #0C1657;
    /* Brand Navy Highlight */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.faq-question {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: inherit;
    padding-right: 20px;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #0C1657;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
}

.sidma-faq-item.is-active .faq-icon {
    transform: rotate(45deg);
    /* Plus becomes Cross */
}

/* Accordion Animation */
.sidma-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.sidma-faq-item.is-active .sidma-faq-content {
    max-height: 1000px;
    /* Arbitrary large number or handle via JS */
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-inner {
    padding: 0 20px 20px 20px;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-inner p:last-child {
    margin-bottom: 0;
}