.accordion-item {
    border-radius: 8px;
    background: #fff;
    width: 100%;
    padding: 16px;
    border: 1px solid #d9d9d9;
    margin-bottom: 16px;
}

.accordion-header {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
}

.accordion-title {
    flex: 1;
    margin: auto 0;
    font-size: 17px;
    font-weight: 700;
}

.accordion-content {
    margin-top: 8px;
    line-height: 22px;
}

.accordion-collapsed {
    background: #f5f5f5;
}