.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-search {
    position: relative;
    margin-bottom: 1rem;
}

.faq-search input.faq-search-input {
    display: block;
    box-sizing: border-box;
    width: 100% !important;
    min-height: 48px;
    margin: 0 !important;
    padding: 0.75rem 5.5rem 0.75rem 2.75rem;
    color: #282828;
    font: inherit;
    line-height: 1.3;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23282828' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 1rem center;
    border: 1px solid #e0e0e0 !important;
    border-radius: 6px;
    box-shadow: none !important;
}

.faq-search .faq-search-clear {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    min-height: 32px;
    padding: 0.25rem 0.75rem;
    color: #c01d1e;
    font: inherit;
    font-weight: 600;
    line-height: 1;
    background: transparent;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    transform: translateY(-50%);
}

.faq-search .faq-search-clear:hover,
.faq-search .faq-search-clear:focus {
    color: #ffffff;
    background-color: #c01d1e;
}

.faq-search .faq-search-clear:focus {
    outline: 2px solid rgba(192, 29, 30, 0.3);
    outline-offset: 2px;
}

.faq-search input.faq-search-input::placeholder {
    color: #6b6b6b;
    opacity: 1;
}

.faq-search input.faq-search-input:focus {
    border-color: #c01d1e !important;
    outline: 2px solid rgba(192, 29, 30, 0.2);
    outline-offset: 2px;
}

.faq-accordion.is-loading {
    opacity: 0.5;
    pointer-events: none;
}

.faq-accordion .faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.75rem 1rem;
}

.faq-accordion .faq-item summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

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

.faq-accordion .faq-item summary::after {
    content: '+';
    float: right;
}

.faq-accordion .faq-item[open] summary::after {
    content: '−';
}

.faq-accordion .faq-content {
    margin-top: 0.75rem;
}

.faq-accordion .faq-read-more {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
}
