.seo-edge-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.seo-edge-faq-item {
    background: #ffffff;
    border: 1px solid #e7e9ee;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.seo-edge-faq-item.is-open {
    background: #0b1434;
    border-color: #0b1434;
    color: #ffffff;
}

.seo-edge-faq-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font: inherit;
}

.seo-edge-faq-trigger:hover,
.seo-edge-faq-trigger:focus {
    color: inherit;
    background: transparent;
}

.seo-edge-faq-index {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #0b1434;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex: 0 0 auto;
}

.seo-edge-faq-item.is-open .seo-edge-faq-index {
    background: #ffffff;
    color: #0b1434;
}

.seo-edge-faq-question {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.seo-edge-faq-icon {
    margin-left: auto;
    width: 18px;
    height: 18px;
    position: relative;
    flex: 0 0 auto;
    color: currentColor;
}

.seo-edge-faq-icon::before,
.seo-edge-faq-icon::after {
    content: "";
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.seo-edge-faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.seo-edge-faq-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.seo-edge-faq-item.is-open .seo-edge-faq-icon::after {
    opacity: 0;
}

.seo-edge-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.seo-edge-faq-item.is-open .seo-edge-faq-panel {
    max-height: 1000px;
}

.seo-edge-faq-answer {
    padding: 0 20px 20px 58px;
    font-size: 14px;
    line-height: 1.6;
    color: inherit;
    opacity: 0.9;
}

@media (max-width: 767px) {
    .seo-edge-faq-trigger {
        padding: 16px 16px;
    }

    .seo-edge-faq-answer {
        padding: 0 16px 18px 50px;
    }

    .seo-edge-faq-question {
        font-size: 15px;
    }
}
