.faq-accordion-container-68eca31f {
    display: flex;
    flex-direction: column;
}

.faq-accordion-item {
    border-bottom: 1px solid #e2e8f0;
}

/* Removed border-top from first-child */
.faq-accordion-item:first-child {
    border-top: none;
}

.faq-accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Changed from center to flex-start to align icon with top line of text */
    cursor: pointer;
    text-align: left;
    gap: 16px; /* Ensure space between text and icon */
}

.faq-accordion-header:focus {
    outline: none;
}

.faq-accordion-question {
    margin: 0;
    padding: 0;
    flex: 1 1 auto; /* Allow it to grow and shrink, but respect its container */
    font-size: 1.25rem;
    font-weight: 500;
    word-break: break-word; /* Ensure long words break */
    white-space: normal; /* Allow text wrapping */
    overflow-wrap: anywhere; /* A more robust wrapping approach */
    min-width: 0; /* Important flexbox trick for wrapping */
}

.faq-accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #0f172a;
    flex-shrink: 0; /* Ensure icon never shrinks */
    flex-basis: auto;
    margin-top: 4px; /* Slight adjust to vertically center with the first line of text */
}

.faq-accordion-item.is-active .faq-accordion-icon {
    transform: rotate(180deg);
}

.faq-accordion-content {
    padding-bottom: 24px;
}

.faq-accordion-answer {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}