    .possibilities {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .possibilities-card {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .possibilities-header {
        display: flex;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #f9f9f9;
        transition: background-color 0.3s ease;
        user-select: none;
    }
    
    .possibilities-header:hover {
        background-color: #f0f0f0;
    }
    
    .possibilities-header.active {
        background-color: #e8f4ff;
    }
    
    .possibilities-icon {
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .possibilities-icon img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }
    
    .possibilities-title {
        font-weight: 600;
        font-size: 16px;
        color: #333;
        flex-grow: 1;
    }
    
    .possibilities-arrow {
        width: 20px;
        height: 20px;
        position: relative;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }
    
    .possibilities-arrow::before,
    .possibilities-arrow::after {
        content: '';
        position: absolute;
        background-color: red;
        border-radius: 2px;
        transition: transform 0.3s ease;
    }
    
    .possibilities-arrow::before {
        width: 12px;
        height: 2px;
        top: 50%;
        left: 4px;
        transform: translateY(-50%);
    }
    
    .possibilities-arrow::after {
        width: 2px;
        height: 12px;
        top: 4px;
        left: 9px;
    }
    
    .possibilities-header.active .possibilities-arrow {
        transform: rotate(90deg);
    }
    
    .possibilities-header.active .possibilities-arrow::after {
        transform: rotate(90deg);
    }
    
    .possibilities-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .possibilities-content.open {
        max-height: 1000px; /* Достаточно большое значение */
    }
    
    .possibilities-content-inner {
        padding: 0 20px 20px 65px;
        line-height: 1.5;
        color: #555;
    }