.caw-faq-section {
    width: 100%;
}

.caw-accordion-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: background 0.3s;
}

.caw-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.caw-accordion-header:hover,
.caw-accordion-header:focus {
    background: transparent;
    outline: none;
}

.caw-accordion-header span {
    flex: 1;
    min-width: 0;
    word-break: break-word;
    white-space: normal;
}

.caw-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.caw-icon i {
    font-size: 14px;
    line-height: 1;
    display: block;
}

.caw-icon svg {
    width: 14px;
    height: 14px;
    display: block;
}

.caw-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.caw-accordion-body p {
    margin: 0;
    padding: 0 20px 15px;
    color: #333;
}

/* Active State */
.caw-accordion-item.active {
    background: #e60000;
    color: #fff;
}

.caw-accordion-item.active .caw-accordion-body {
    max-height: 500px;
}

.caw-accordion-item.active .caw-accordion-body p {
    color: #fff;
}

.caw-accordion-item.active .caw-icon i,
.caw-accordion-item.active .caw-icon svg {
    color: #fff;
    fill: #fff;
}
