.faq-category-header {
    margin-bottom: 1.25rem;
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin: 0;
    padding: 0 0 1rem;
    position: relative;
}

.faq-category-title::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        #004a99 0%,
        #00aeef 35%,
        rgba(0, 174, 239, 0.15) 70%,
        transparent 100%
    );
}

.faq-category-accent {
    flex-shrink: 0;
    width: 4px;
    height: 1.75rem;
    border-radius: 4px;
    background: linear-gradient(180deg, #00aeef 0%, #004a99 100%);
    box-shadow: 0 0 12px rgba(0, 174, 239, 0.35);
}

.faq-category-title-text {
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.3;
    background: linear-gradient(120deg, #003366 0%, #004a99 45%, #0077cc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
    .faq-category-title-text {
        font-size: 1.5rem;
    }

    .faq-category-accent {
        height: 2rem;
        width: 5px;
    }
}

.faq-item {
    border-radius: 1rem;
    border: 1px solid #e2edf5;
    background: #fff;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.125rem 1.25rem;
    font-weight: 600;
    color: #004a99;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: #00aeef;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item .faq-body {
    padding: 0 1.25rem 1.125rem;
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.8;
    white-space: pre-line;
    word-break: break-word;
}

.faq-contact {
    margin-top: 2rem;
}
